summaryrefslogtreecommitdiff
path: root/build/bmakespeed
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-04-23 01:07:19 +0300
committerAndrei Karas <akaras@inbox.ru>2013-04-23 01:07:19 +0300
commit2287e4b816ff5fc4f1dade45c8fca5c808ddc625 (patch)
tree45a8d07b68db50b7538fc4fcd579b83ab07c8b03 /build/bmakespeed
parent65195837a012da57d9918be119a6434250650b9b (diff)
downloadplus-2287e4b816ff5fc4f1dade45c8fca5c808ddc625.tar.gz
plus-2287e4b816ff5fc4f1dade45c8fca5c808ddc625.tar.bz2
plus-2287e4b816ff5fc4f1dade45c8fca5c808ddc625.tar.xz
plus-2287e4b816ff5fc4f1dade45c8fca5c808ddc625.zip
add script (bmakespeed) for maximum perfomance.
Diffstat (limited to 'build/bmakespeed')
-rwxr-xr-xbuild/bmakespeed30
1 files changed, 30 insertions, 0 deletions
diff --git a/build/bmakespeed b/build/bmakespeed
new file mode 100755
index 000000000..6e5598296
--- /dev/null
+++ b/build/bmakespeed
@@ -0,0 +1,30 @@
+#!/bin/sh
+
+cd ..
+
+dir=`pwd`
+
+export CC=gcc-4.7
+export CXX=g++-4.7
+
+export LANG=C
+
+export CXXFLAGS="-ggdb3 -O5 -pipe -ffast-math \
+-funswitch-loops -pedantic -Wall \
+-D_FORTIFY_SOURCE=2 -Wc++11-compat -std=c++0x \
+-funsafe-loop-optimizations -flto -fwhole-program \
+-march=native"
+
+autoreconf -i
+./configure --prefix=$dir/run \
+--datadir=$dir/run/share/games \
+--bindir=$dir/run/bin \
+--mandir=$dir/run/share/man \
+--with-internalguichan=yes \
+--enable-eathena=yes
+
+cd po
+make -j5 update-gmo 2>../build/make1.log
+cd ..
+make -j5 2>build/make2.log
+