diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-03-26 23:32:56 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-03-26 23:32:56 +0300 |
commit | f247812a28c090b0edaf0339144f8c402b829ccb (patch) | |
tree | 8c7fbca8337bdffd0c40c798f8d69b59fe9f9efa /build/bmake45 | |
parent | 65c931fc8dd0f7379ee23aa57fa96aa5f2f70008 (diff) | |
download | plus-f247812a28c090b0edaf0339144f8c402b829ccb.tar.gz plus-f247812a28c090b0edaf0339144f8c402b829ccb.tar.bz2 plus-f247812a28c090b0edaf0339144f8c402b829ccb.tar.xz plus-f247812a28c090b0edaf0339144f8c402b829ccb.zip |
Switch by default in build scripts to gcc 4.7.
Add gcc 4.5 build script.
Diffstat (limited to 'build/bmake45')
-rwxr-xr-x | build/bmake45 | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/build/bmake45 b/build/bmake45 new file mode 100755 index 000000000..33df5d180 --- /dev/null +++ b/build/bmake45 @@ -0,0 +1,60 @@ +#!/bin/sh + +cd .. + +#may be +#-Waggregate-return -Winline + +#for feature +#-Wstrict-overflow=4 -Wfloat-equal +#-Wunsafe-loop-optimizations +#-Woverloaded-virtual +#-Wformat=2 +#-Wswitch-enum + +#for better code +# -Weffc++ + +#need fix: -Wold-style-cast -Wconversion +#prof -pg + +dir=`pwd` + +export CC=gcc-4.5 +export CXX=g++-4.5 + +export LANG=C +export CXXFLAGS="-Wunreachable-code -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 -Wunused -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" + +autoreconf -i +./configure --prefix=$dir/run \ +--datadir=$dir/run/share/games \ +--bindir=$dir/run/bin \ +--mandir=$dir/run/share/man \ +--enable-memdebug=yes \ +--with-internalguichan=yes \ +--enable-tcmalloc=no \ +--enable-googleprofiler=no + +#--enable-applebuild=yes +#--without-librt + +cd po +#make -j5 update-po 2>../make1.log +make -j5 update-gmo 2>../build/make1.log +cd .. +make -j5 2>build/make2.log + |