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 /bmake46 | |
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 'bmake46')
-rwxr-xr-x | bmake46 | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/bmake46 b/bmake46 deleted file mode 100755 index 8874f802b..000000000 --- a/bmake46 +++ /dev/null @@ -1,63 +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 -#-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 -#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" - -autoreconf -i -./configure --prefix=$dir/run \ ---datadir=$dir/run/share/games \ ---bindir=$dir/run/bin \ ---mandir=$dir/run/share/man - -cd po -#make -j5 update-po 2>../make1.log -make -j5 update-gmo 2>../make1.log -cd .. -make -j5 2>make2.log - |