diff options
Diffstat (limited to 'tools/ci/jobs/gcc10.sh')
-rwxr-xr-x | tools/ci/jobs/gcc10.sh | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/tools/ci/jobs/gcc10.sh b/tools/ci/jobs/gcc10.sh new file mode 100755 index 000000000..0a48404b4 --- /dev/null +++ b/tools/ci/jobs/gcc10.sh @@ -0,0 +1,32 @@ +#!/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 -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/gcc10.sh + +export CXXFLAGS="$CXXFLAGS $POST_CXXFLAGS" + +do_init +run_configure --enable-werror $* +run_make + +source ./tools/ci/scripts/exit.sh + +exit 0 |