summaryrefslogtreecommitdiff
path: root/tools/ci/jobs/gcc9.sh
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2020-05-30 02:25:31 +0300
committerAndrei Karas <akaras@inbox.ru>2020-05-30 02:25:31 +0300
commitb41eed4b2c1e7cb697d5a71d407c3bd48882a5c0 (patch)
treeb75ad2c13d5c97dad199b4d296b7d1e629d6b762 /tools/ci/jobs/gcc9.sh
parent1d5f0ad88158a248040217e2e0c072dab305f12c (diff)
downloadplus-b41eed4b2c1e7cb697d5a71d407c3bd48882a5c0.tar.gz
plus-b41eed4b2c1e7cb697d5a71d407c3bd48882a5c0.tar.bz2
plus-b41eed4b2c1e7cb697d5a71d407c3bd48882a5c0.tar.xz
plus-b41eed4b2c1e7cb697d5a71d407c3bd48882a5c0.zip
Add gcc-9 related ci scripts
Diffstat (limited to 'tools/ci/jobs/gcc9.sh')
-rwxr-xr-xtools/ci/jobs/gcc9.sh32
1 files changed, 32 insertions, 0 deletions
diff --git a/tools/ci/jobs/gcc9.sh b/tools/ci/jobs/gcc9.sh
new file mode 100755
index 000000000..9be711193
--- /dev/null
+++ b/tools/ci/jobs/gcc9.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 --enable-werror $*
+run_make
+
+source ./tools/ci/scripts/exit.sh
+
+exit 0