summaryrefslogtreecommitdiff
path: root/bmake0
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-06-12 21:54:48 +0300
committerAndrei Karas <akaras@inbox.ru>2011-06-12 21:55:50 +0300
commit78a4aebd67d04ea02d59fca65c2dbcd8a19e826f (patch)
treea9e8e060c825486be19a10d261fa7acddfc1fb8a /bmake0
parentb4b9087a9b314c1e0c1cd4e581e3a61b2215a5c7 (diff)
downloadplus-78a4aebd67d04ea02d59fca65c2dbcd8a19e826f.tar.gz
plus-78a4aebd67d04ea02d59fca65c2dbcd8a19e826f.tar.bz2
plus-78a4aebd67d04ea02d59fca65c2dbcd8a19e826f.tar.xz
plus-78a4aebd67d04ea02d59fca65c2dbcd8a19e826f.zip
Add make script without optimisations with enabled gprofiler.
Disable gprofiler in normal make script by default and enable leak detector.
Diffstat (limited to 'bmake0')
-rwxr-xr-xbmake055
1 files changed, 55 insertions, 0 deletions
diff --git a/bmake0 b/bmake0
new file mode 100755
index 000000000..a617747df
--- /dev/null
+++ b/bmake0
@@ -0,0 +1,55 @@
+#!/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=no \
+--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
+