From 28f571be9dbbb77ef32436fe060f8df5b55576cb Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 8 May 2017 01:40:56 +0300 Subject: Add gcc7 ci scripts. --- tools/ci/jobs/gcc7.sh | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100755 tools/ci/jobs/gcc7.sh (limited to 'tools/ci/jobs/gcc7.sh') diff --git a/tools/ci/jobs/gcc7.sh b/tools/ci/jobs/gcc7.sh new file mode 100755 index 000000000..60fb60f72 --- /dev/null +++ b/tools/ci/jobs/gcc7.sh @@ -0,0 +1,32 @@ +#!/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 -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/gcc7.sh + +export CXXFLAGS="$CXXFLAGS $POST_CXXFLAGS" + +do_init +run_configure --enable-werror $* +run_make + +source ./tools/ci/scripts/exit.sh + +exit 0 -- cgit v1.2.3-70-g09d2