blob: 2865594b6cd74a952879d3417a08e29aead9cb97 (
plain) (
tree)
|
|
#!/bin/sh
cd ..
dir=`pwd`
export CC=gcc
export CXX=g++
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 -fsched-pressure"
autoreconf -i
./configure --prefix=$dir/run \
--datadir=$dir/run/share/games \
--bindir=$dir/run/bin \
--mandir=$dir/run/share/man
cd po
make -j8 update-gmo 2>../build/make1.log
cd ..
make -j8 2>build/make2.log
|