summaryrefslogtreecommitdiff
path: root/build/bmake46
blob: 55355b8d0fd39ef433b93cfb6618f223a93bef52 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/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
#-Werror 

#for better code
# -Weffc++

#from time to time fix: -Wold-style-cast -Wconversion -Wswitch-enum -Waggregate-return
#from time to time fix: -Winline -Woverloaded-virtual
#need fix: -Wsuggest-attribute=pure -Wsuggest-attribute=const
#need fix: -Wstrict-overflow=5 -fstrict-overflow
#need fix: -Wstrict-aliasing=3
#need fix: -Wdouble-promotion
#need fix: -Wfloat-equal
#need fix: -Wunsafe-loop-optimizations
#need fix: -Wpadded
#need fix: -Wsign-conversion
#prof -pg

dir=`pwd`

export CC=gcc-4.6
export CXX=g++-4.6

export LANG=C

export CXXFLAGS="-Wvariadic-macros -Wvla -Wredundant-decls \
-Wpacked-bitfield-compat -Wcast-qual -Wtrampolines \
-Wsuggest-attribute=noreturn -Wunused -Wstrict-aliasing=2 \
-fstrict-aliasing -Wunreachable-code -Wabi -Wdisabled-optimization \
-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 -Wlogical-op \
-Wcast-align -Wcast-qual -Wpointer-arith -Wundef \
-Wmissing-include-dirs -Winit-self -pedantic -Wall -ggdb3 -O2 -pipe \
-Wpacked -Wextra -Wstrict-overflow=1 -Wunknown-pragmas -Wwrite-strings \
-Wstack-protector -Wshadow -Wunused -Wunused-macros -Wsynth \
-Wbuiltin-macro-redefined -Wctor-dtor-privacy -Wdeprecated -Wextra \
-Wendif-labels -Wformat=1 -Wimport -Wnon-virtual-dtor -Wpsabi \
-Wsign-promo -Wwrite-strings -D_FORTIFY_SOURCE=2 -Wc++0x-compat \
-Wno-attributes"

autoreconf -i
./configure --prefix=$dir/run \
--datadir=$dir/run/share/games \
--bindir=$dir/run/bin \
--mandir=$dir/run/share/man \
--enable-memdebug=no \
--enable-tcmalloc=no \
--enable-googleprofiler=no

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