diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-26 05:21:13 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-26 05:21:13 +0000 |
commit | 932b69f4c7931952d5c860fd8a4e386bed158f34 (patch) | |
tree | 3141abbe7cc2556f86325b195844556ab3fe8ea5 /utils/NightlyTest.pl | |
parent | 59473af39565dcff7416426b8aaed3ad63476c81 (diff) |
Revert the last patch so that the LLVMGCCDIR environment variable is
still viable and will make use of the resurrected --with-llvmgccdir
configure option.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19143 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/NightlyTest.pl')
-rwxr-xr-x | utils/NightlyTest.pl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl index 67c96def3a..0c99c6248f 100755 --- a/utils/NightlyTest.pl +++ b/utils/NightlyTest.pl @@ -45,6 +45,8 @@ # WEBDIR is the directory into which the test results web page will be written, # AND in which the "index.html" is assumed to be a symlink to the most recent # copy of the results. This directory will be created if it does not exist. +# LLVMGCCDIR is the directory in which the LLVM GCC Front End is installed +# to. This is the same as you would have for a normal LLVM build. # use POSIX qw(strftime); use File::Copy; @@ -280,6 +282,9 @@ while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) { print "Unknown option: $_ : ignoring!\n"; } +if ($ENV{'LLVMGCCDIR'}) { + $CONFIGUREARGS .= " --with-llvmgccdir=" . $ENV{'LLVMGCCDIR'}; +} if ($CONFIGUREARGS !~ /--disable-jit/) { $CONFIGUREARGS .= " --enable-jit"; } |