diff options
author | Andrei Karas <akaras@inbox.ru> | 2020-05-30 02:25:31 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2020-05-30 02:25:31 +0300 |
commit | b41eed4b2c1e7cb697d5a71d407c3bd48882a5c0 (patch) | |
tree | b75ad2c13d5c97dad199b4d296b7d1e629d6b762 /tools/ci/jobs/gcc9_silent.sh | |
parent | 1d5f0ad88158a248040217e2e0c072dab305f12c (diff) | |
download | mv-b41eed4b2c1e7cb697d5a71d407c3bd48882a5c0.tar.gz mv-b41eed4b2c1e7cb697d5a71d407c3bd48882a5c0.tar.bz2 mv-b41eed4b2c1e7cb697d5a71d407c3bd48882a5c0.tar.xz mv-b41eed4b2c1e7cb697d5a71d407c3bd48882a5c0.zip |
Add gcc-9 related ci scripts
Diffstat (limited to 'tools/ci/jobs/gcc9_silent.sh')
-rwxr-xr-x | tools/ci/jobs/gcc9_silent.sh | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/tools/ci/jobs/gcc9_silent.sh b/tools/ci/jobs/gcc9_silent.sh new file mode 100755 index 000000000..920709da9 --- /dev/null +++ b/tools/ci/jobs/gcc9_silent.sh @@ -0,0 +1,32 @@ +#!/bin/bash + +export CC=gcc-9 +export CXX=g++-9 + +if [ "$NEWCC" != "" ]; then + export CC="$NEWCC" +fi +if [ "$NEWCXX" != "" ]; then + export CXX="$NEWCXX" +fi + +export LOGFILE=gcc9.log + +source ./tools/ci/scripts/init.sh + +export CXXFLAGS="$CXXFLAGS -pedantic -ggdb3 -O2 -pipe -Wstrict-aliasing=2 \ +-Wstrict-overflow=1 -Wformat=1 -D_FORTIFY_SOURCE=2 \ +-std=gnu++2a -Wformat=1 \ +-Wno-attributes -fno-omit-frame-pointer" + +source ./tools/ci/flags/gcc9.sh + +export CXXFLAGS="$CXXFLAGS $POST_CXXFLAGS" + +do_init +run_configure $* +run_make + +source ./tools/ci/scripts/exit.sh + +exit 0 |