blob: 4809cb27a97fe0a80298721e7bf35e0496ca428d (
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
30
31
32
33
34
35
36
37
38
|
#!/bin/bash
export CC=gcc-7
export CXX=g++-7
if [ "$NEWCC" != "" ]; then
export CC="$NEWCC"
fi
if [ "$NEWCXX" != "" ]; then
export CXX="$NEWCXX"
fi
export LOGFILE=gcc7.log
source ./tools/ci/scripts/init.sh
# remove -flto -fwhole-program because gcc bug with lto + target attribute
export CXXFLAGS="$CXXFLAGS -pedantic -ggdb3 -O5 -pipe -Wstrict-aliasing=2 \
-Wstrict-overflow=1 -Wformat=1 -D_FORTIFY_SOURCE=2 \
-ffast-math -funswitch-loops \
-funsafe-loop-optimizations \
-march=native -fsched-pressure
-std=gnu++1z -Wformat=1 \
-fno-var-tracking -Wno-attributes"
source ./tools/ci/flags/gcc7.sh
export CXXFLAGS="$CXXFLAGS $POST_CXXFLAGS"
do_init
run_configure --enable-unittests=yes $*
export SDL_VIDEODRIVER=dummy
run_make_check
source ./tools/ci/scripts/exit.sh
exit 0
|