diff options
Diffstat (limited to 'tools/ci/jobs/gcc44.sh')
-rwxr-xr-x | tools/ci/jobs/gcc44.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/ci/jobs/gcc44.sh b/tools/ci/jobs/gcc44.sh index 4096c66bf..c831963d7 100755 --- a/tools/ci/jobs/gcc44.sh +++ b/tools/ci/jobs/gcc44.sh @@ -2,6 +2,14 @@ export CC=gcc-4.4 export CXX=g++-4.4 + +if [ "$NEWCC" != "" ]; then + export CC="$NEWCC" +fi +if [ "$NEWCXX" != "" ]; then + export CXX="$NEWCXX" +fi + export LOGFILE=gcc44.log source ./tools/ci/scripts/init.sh |