diff options
author | Andrei Karas <akaras@inbox.ru> | 2020-05-30 02:28:45 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2020-05-30 02:28:45 +0300 |
commit | 1fd79b5354ed77bc5ea8708c09f6538d7caf6476 (patch) | |
tree | f2321ba178db214b88e95e8d87a8adb422e61d18 /tools/ci/jobs/gcc10_lto.sh | |
parent | b41eed4b2c1e7cb697d5a71d407c3bd48882a5c0 (diff) | |
download | plus-1fd79b5354ed77bc5ea8708c09f6538d7caf6476.tar.gz plus-1fd79b5354ed77bc5ea8708c09f6538d7caf6476.tar.bz2 plus-1fd79b5354ed77bc5ea8708c09f6538d7caf6476.tar.xz plus-1fd79b5354ed77bc5ea8708c09f6538d7caf6476.zip |
Add gcc-10 related ci scripts
Diffstat (limited to 'tools/ci/jobs/gcc10_lto.sh')
-rwxr-xr-x | tools/ci/jobs/gcc10_lto.sh | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tools/ci/jobs/gcc10_lto.sh b/tools/ci/jobs/gcc10_lto.sh new file mode 100755 index 000000000..2dac75b98 --- /dev/null +++ b/tools/ci/jobs/gcc10_lto.sh @@ -0,0 +1,31 @@ +#!/bin/bash + +export CC=gcc-10 +export CXX=g++-10 + +if [ "$NEWCC" != "" ]; then + export CC="$NEWCC" +fi +if [ "$NEWCXX" != "" ]; then + export CXX="$NEWCXX" +fi + +export LOGFILE=gcc10.log + +source ./tools/ci/scripts/init.sh + +export CXXFLAGS="$CXXFLAGS -ggdb3 -pipe -ffast-math -O9 -flto -fwhole-program \ +-fno-omit-frame-pointer -funswitch-loops -D_FORTIFY_SOURCE=2 -std=gnu++2a \ +-Wno-attributes -fno-omit-frame-pointer" + +source ./tools/ci/flags/gcc10.sh + +export CXXFLAGS="$CXXFLAGS $POST_CXXFLAGS" + +do_init +run_configure --enable-werror $* +run_make + +source ./tools/ci/scripts/exit.sh + +exit 0 |