bmaketest 489 B

123456789101112131415161718192021222324252627282930
  1. #!/bin/bash
  2. cd ..
  3. dir=`pwd`
  4. export CC=gcc
  5. export CXX=g++
  6. export LANG=C
  7. export CXXFLAGS="-pedantic -ggdb3 -O3 -pipe -ffast-math \
  8. -D_FORTIFY_SOURCE=2 \
  9. -std=gnu++2a \
  10. -fno-var-tracking -Wno-attributes"
  11. source ./tools/ci/flags/gcc8.sh
  12. autoreconf -i
  13. ./configure --prefix=$dir/run \
  14. --datadir=$dir/run/share/games \
  15. --bindir=$dir/run/bin \
  16. --mandir=$dir/run/share/man \
  17. --enable-unittests=doctest
  18. cd po
  19. make -j16 update-gmo 2>../build/make1.log
  20. cd ..
  21. make -j16 check 2>build/make2.log