blob: 1d5328f40fa09f26939ff00291935b5f289813d2 (
plain) (
tree)
|
|
#!/bin/bash
cd ..
dir=`pwd`
export CC=gcc
export CXX=g++
export LANG=C
export CXXFLAGS="-pedantic -ggdb3 -O3 -pipe -ffast-math \
-D_FORTIFY_SOURCE=2 \
-std=gnu++2a \
-fno-var-tracking -Wno-attributes"
source ./tools/ci/flags/gcc8.sh
autoreconf -i
./configure --prefix=$dir/run \
--datadir=$dir/run/share/games \
--bindir=$dir/run/bin \
--mandir=$dir/run/share/man \
--enable-unittests=doctest
cd po
make -j8 update-gmo 2>../build/make1.log
cd ..
make -j8 check 2>build/make2.log
|