diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-05-05 20:42:50 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-05-05 23:03:46 +0300 |
commit | cdd3375268182ccd51c9798375e2766d0abdaa7f (patch) | |
tree | 56e4ba47531476e69dbf59f4dee7f115d1e40431 /tools/ci/jobs/gcc8_silent.sh | |
parent | 4e7b64f4c034e1d11b8ada8f2ba7f48dcb2fa8d8 (diff) | |
download | plus-cdd3375268182ccd51c9798375e2766d0abdaa7f.tar.gz plus-cdd3375268182ccd51c9798375e2766d0abdaa7f.tar.bz2 plus-cdd3375268182ccd51c9798375e2766d0abdaa7f.tar.xz plus-cdd3375268182ccd51c9798375e2766d0abdaa7f.zip |
Add gcc-8 ci build scripts.
Diffstat (limited to 'tools/ci/jobs/gcc8_silent.sh')
-rwxr-xr-x | tools/ci/jobs/gcc8_silent.sh | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/tools/ci/jobs/gcc8_silent.sh b/tools/ci/jobs/gcc8_silent.sh new file mode 100755 index 000000000..be3f272dc --- /dev/null +++ b/tools/ci/jobs/gcc8_silent.sh @@ -0,0 +1,32 @@ +#!/bin/bash + +export CC=gcc-8 +export CXX=g++-8 + +if [ "$NEWCC" != "" ]; then + export CC="$NEWCC" +fi +if [ "$NEWCXX" != "" ]; then + export CXX="$NEWCXX" +fi + +export LOGFILE=gcc8.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++1z -Wformat=1 \ +-Wno-attributes -fno-omit-frame-pointer" + +source ./tools/ci/flags/gcc8.sh + +export CXXFLAGS="$CXXFLAGS $POST_CXXFLAGS" + +do_init +run_configure $* +run_make + +source ./tools/ci/scripts/exit.sh + +exit 0 |