summaryrefslogtreecommitdiff
path: root/tools/ci/jobs/gcc49_tests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/ci/jobs/gcc49_tests.sh')
-rwxr-xr-xtools/ci/jobs/gcc49_tests.sh28
1 files changed, 28 insertions, 0 deletions
diff --git a/tools/ci/jobs/gcc49_tests.sh b/tools/ci/jobs/gcc49_tests.sh
new file mode 100755
index 000000000..c4796cedc
--- /dev/null
+++ b/tools/ci/jobs/gcc49_tests.sh
@@ -0,0 +1,28 @@
+#!/bin/bash
+
+export CC=gcc-4.9
+export CXX=g++-4.9
+
+if [ "$NEWCC" != "" ]; then
+ export CC="$NEWCC"
+fi
+if [ "$NEWCXX" != "" ]; then
+ export CXX="$NEWCXX"
+fi
+
+export LOGFILE=gcc49_tests.log
+
+source ./tools/ci/scripts/init.sh
+
+export CXXFLAGS="-ggdb3 -O2 -pipe -ffast-math \
+-fno-omit-frame-pointer \
+-D_FORTIFY_SOURCE=2 -std=gnu++1y"
+
+do_init
+run_configure --enable-unittests=yes $*
+export SDL_VIDEODRIVER=dummy
+run_make_check
+
+source ./tools/ci/scripts/exit.sh
+
+exit 0