diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-10-13 02:33:04 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-10-13 04:00:29 +0300 |
commit | d203be43c9e1006672a1a1da6b177fd43f4760c2 (patch) | |
tree | 5a8aa84610405c3b54dff8d38edfa15d08603269 /bmake0 | |
parent | d2c132d50f618e8b533cb69d39e3e76d5439def9 (diff) | |
download | plus-d203be43c9e1006672a1a1da6b177fd43f4760c2.tar.gz plus-d203be43c9e1006672a1a1da6b177fd43f4760c2.tar.bz2 plus-d203be43c9e1006672a1a1da6b177fd43f4760c2.tar.xz plus-d203be43c9e1006672a1a1da6b177fd43f4760c2.zip |
Move build scripts and logs to build dir.
Diffstat (limited to 'bmake0')
-rwxr-xr-x | bmake0 | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/bmake0 b/bmake0 deleted file mode 100755 index 0b32247ef..000000000 --- a/bmake0 +++ /dev/null @@ -1,55 +0,0 @@ -#!/bin/sh - -#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.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 -O0 -pipe \ --fno-default-inline -fno-inline" - -autoreconf -i -./configure --prefix=$dir/run \ ---datadir=$dir/run/share/games \ ---bindir=$dir/run/bin \ ---mandir=$dir/run/share/man \ ---enable-memdebug=no \ ---with-internalguichan=yes \ ---enable-tcmalloc=yes \ ---enable-googleprofiler=yes - -#--without-librt - -cd po -#make -j5 update-po 2>../make1.log -make -j5 update-gmo 2>../make1.log -cd .. -make -j5 2>make2.log - |