1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #!/bin/sh
- cd ..
- #may be
- #-Wshadow -Waggregate-return -Winline
- #for feature
- #-Wstrict-overflow=4 -Wfloat-equal
- #-Wunsafe-loop-optimizations
- #-Wnon-virtual-dtor
- #-Woverloaded-virtual
- #-Wformat=2
- #-Wswitch-enum
- #for better code
- # -Weffc++
- #need fix: -Wold-style-cast -Wconversion
- #prof -pg
- dir=`pwd`
- export CC=gcc-4.4
- export CXX=g++-4.4
- export LANG=C
- export CXXFLAGS="-Wmissing-field-initializers \
- -Wabi -Wdisabled-optimization -Wuninitialized \
- -Wvolatile-register-var -Winvalid-pch -Wredundant-decls \
- -Wnormalized=nfkc -Wmissing-format-attribute -Wmissing-noreturn \
- -Wswitch-default -Wsign-promo -Waddress -Wmissing-declarations \
- -Wctor-dtor-privacy -Wstrict-null-sentinel \
- -Wunused-parameter -Wlogical-op \
- -Wempty-body -Wsign-compare -Wclobbered -Wcast-align -Wcast-qual \
- -Wtype-limits -Wpointer-arith -Wundef -Wmissing-include-dirs \
- -Wignored-qualifiers -Winit-self -pedantic -Wall -ggdb3 -O2 -pipe \
- -Wpacked -Wshadow -D_FORTIFY_SOURCE=2 \
- -Wno-attributes"
- autoreconf -i
- ./configure --prefix=$dir/run \
- --datadir=$dir/run/share/games \
- --bindir=$dir/run/bin \
- --mandir=$dir/run/share/man
- cd po
- #make -j16 update-po 2>../build/make1.log
- make -j16 update-gmo 2>../build/make1.log
- cd ..
- make -j16 2>build/make2.log
|