diff options
Diffstat (limited to 'tools/ci/jobs/gccsnapshot_tests.sh')
-rwxr-xr-x | tools/ci/jobs/gccsnapshot_tests.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/ci/jobs/gccsnapshot_tests.sh b/tools/ci/jobs/gccsnapshot_tests.sh index 1d603e08a..cfce93c32 100755 --- a/tools/ci/jobs/gccsnapshot_tests.sh +++ b/tools/ci/jobs/gccsnapshot_tests.sh @@ -2,6 +2,14 @@ export CC=gcc export CXX=g++ + +if [ "$NEWCC" != "" ]; then + export CC="$NEWCC" +fi +if [ "$NEWCXX" != "" ]; then + export CXX="$NEWCXX" +fi + export LOGFILE=gcc-snapshot.log export PATH=/usr/lib/gcc-snapshot/bin:$PATH |