blob: 029a1f481aa78cfdda27fde7005fcc2d3915ce04 (
plain) (
tree)
|
|
#!/bin/bash
cd ..
dir=`pwd`
export CC=gcc
export CXX=g++
export LANG=C
export CXXFLAGS="-pedantic -ggdb3 -O5 -pipe -ffast-math \
-funswitch-loops \
-D_FORTIFY_SOURCE=2 \
-funsafe-loop-optimizations -flto -fwhole-program \
-march=native -fsched-pressure
-std=gnu++1z \
-fno-var-tracking"
source ./build/gcc6flags.sh
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
|