summaryrefslogtreecommitdiff
path: root/build/bmaketest
blob: 153887625d3556addbd5a655ca673c5373b84086 (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
#!/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 -j16 update-gmo 2>../build/make1.log
cd ..
make -j16 check 2>build/make2.log