summaryrefslogtreecommitdiff
path: root/tools/ci/jobs/gcc7_lto.sh
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-05-08 01:40:56 +0300
committerAndrei Karas <akaras@inbox.ru>2017-05-08 01:40:56 +0300
commit28f571be9dbbb77ef32436fe060f8df5b55576cb (patch)
tree774e9bc55fe77b5c2dd1cc9306d3d0a9bcefaf6e /tools/ci/jobs/gcc7_lto.sh
parent4adf9d9c2ef56dac7870334f14db5f9ba1de3148 (diff)
downloadplus-28f571be9dbbb77ef32436fe060f8df5b55576cb.tar.gz
plus-28f571be9dbbb77ef32436fe060f8df5b55576cb.tar.bz2
plus-28f571be9dbbb77ef32436fe060f8df5b55576cb.tar.xz
plus-28f571be9dbbb77ef32436fe060f8df5b55576cb.zip
Add gcc7 ci scripts.
Diffstat (limited to 'tools/ci/jobs/gcc7_lto.sh')
-rwxr-xr-xtools/ci/jobs/gcc7_lto.sh31
1 files changed, 31 insertions, 0 deletions
diff --git a/tools/ci/jobs/gcc7_lto.sh b/tools/ci/jobs/gcc7_lto.sh
new file mode 100755
index 000000000..7de01c666
--- /dev/null
+++ b/tools/ci/jobs/gcc7_lto.sh
@@ -0,0 +1,31 @@
+#!/bin/bash
+
+export CC=gcc-7
+export CXX=g++-7
+
+if [ "$NEWCC" != "" ]; then
+ export CC="$NEWCC"
+fi
+if [ "$NEWCXX" != "" ]; then
+ export CXX="$NEWCXX"
+fi
+
+export LOGFILE=gcc7.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++1z \
+-Wno-attributes -fno-omit-frame-pointer"
+
+source ./tools/ci/flags/gcc7.sh
+
+export CXXFLAGS="$CXXFLAGS $POST_CXXFLAGS"
+
+do_init
+run_configure --enable-werror $*
+run_make
+
+source ./tools/ci/scripts/exit.sh
+
+exit 0