mirror of
https://git.themanaworld.org/mana/verse
synced 2026-08-16 04:23:07 -04:00
A grep for make1 / make2 / fink reveals that no script uses these. Perhaps something externally was processing them? In any case, some commented-out cases were left in for future grepping. And, along with windows builder, the rest are fixed as well, as this took me some time to figure out and I don't want it to take time, again. **** mana/verse!263
38 lines
655 B
Bash
Executable file
38 lines
655 B
Bash
Executable file
#!/bin/bash
|
|
|
|
mkdir tmp
|
|
cd ..
|
|
|
|
dir=`pwd`
|
|
|
|
export CCACHE_DIR="${dir}/build/ccache/bmakemem"
|
|
export CC="ccache gcc"
|
|
export CXX="ccache 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
|
|
|
|
export CXXFLAGS="$CXXFLAGS -Wno-null-dereference"
|
|
|
|
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=yes \
|
|
--enable-tcmalloc=no \
|
|
--enable-googleprofiler=no \
|
|
--enable-werror
|
|
|
|
cd po
|
|
make -j16 update-gmo
|
|
cd ..
|
|
make -j16
|
|
|