blob: d3bd476be294a1c23122684b4c4679ebc9c7c774 (
plain) (
tree)
|
|
#!/bin/bash
mkdir tmp
cd ..
dir=`pwd`
export CC=gcc
export CXX=g++
export LANG=C
export CXXFLAGS="-pedantic -ggdb3 -O3 -pipe -ffast-math \
-D_FORTIFY_SOURCE=2 \
-fsanitize=address -fsanitize=undefined \
-fsanitize=shift -fsanitize=integer-divide-by-zero -fsanitize=unreachable \
-fsanitize=vla-bound -fsanitize=null -fsanitize=return \
-fsanitize=signed-integer-overflow -fsanitize=bounds -fsanitize=alignment \
-fsanitize=object-size -fsanitize=float-divide-by-zero -fsanitize=float-cast-overflow \
-fsanitize=nonnull-attribute -fsanitize=returns-nonnull-attribute -fsanitize=bool \
-fsanitize=enum -fsanitize=vptr \
-std=gnu++1z \
-fno-var-tracking -Wno-attributes"
source ./build/gcc6flags.sh
autoreconf -i
cd build/tmp
../../configure --prefix=$dir/run \
--datadir=$dir/run/share/games \
--bindir=$dir/run/bin \
--mandir=$dir/run/share/man \
--enable-memdebug=no \
--enable-tcmalloc=no \
--enable-googleprofiler=no \
--enable-checks=yes \
--with-sdl2
cd po
make -j8 update-gmo 2>../../make1.log
cd ..
make -j8 2>../make2.log
|