summaryrefslogtreecommitdiff
path: root/build/bmakespeed
blob: 5f182c815f9fa7b04c55df0838eb6b045b9e2d18 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/sh

cd ..

dir=`pwd`

export CC=gcc-4.8
export CXX=g++-4.8

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 -j8 update-gmo 2>../build/make1.log
cd ..
make -j8 2>build/make2.log