blob: dd93fa0456529855c46f56662f8076e261486c1e (
plain) (
tree)
|
|
#!/bin/bash
mkdir tmp
cd ..
dir=`pwd`
export CCACHE_DIR="${dir}/build/ccache/bmakespeed"
export CC="ccache gcc"
export CXX="ccache 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 -Wno-attributes"
source ./tools/ci/flags/gcc7.sh
autoreconf -i
cd build/tmp
../../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>../../make1.log
cd ..
make -j8 2>../make2.log
|