diff options
author | Chris Lattner <sabre@nondot.org> | 2004-07-27 08:29:06 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-07-27 08:29:06 +0000 |
commit | 892cdb3b3a93d54c0f48490a5518369932f07028 (patch) | |
tree | d5ab956ff54688f482b9991bdf45bb6e2869406e /utils | |
parent | 2d26ffb6791978f23ffa2d81a84f6478ee016cd8 (diff) | |
download | external_llvm-892cdb3b3a93d54c0f48490a5518369932f07028.zip external_llvm-892cdb3b3a93d54c0f48490a5518369932f07028.tar.gz external_llvm-892cdb3b3a93d54c0f48490a5518369932f07028.tar.bz2 |
Ugh, the upgrade of zion brought in GCC 3.3.2, our arch nemesis.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15269 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/NightlyTest.pl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl index be1363b..6e59e81 100755 --- a/utils/NightlyTest.pl +++ b/utils/NightlyTest.pl @@ -32,6 +32,7 @@ # on busy servers. # -gnuplotscript Next argument specifies gnuplot script to use # -templatefile Next argument specifies template file to use +# -gccpath Path to gcc/g++ used to build LLVM # # CVSROOT is the CVS repository from which the tree will be checked out, # specified either in the full :method:user@host:/dir syntax, or @@ -269,6 +270,7 @@ while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) { if (/^-nice$/) { $NICE = "nice "; next; } if (/^-gnuplotscript$/) { $PlotScriptFilename = $ARGV[0]; shift; next; } if (/^-templatefile$/) { $Template = $ARGV[0]; shift; next; } + if (/^-gccpath/) { $CONFIGUREARGS=" CC=$ARGV[0]/gcc CXX=$ARGV[0]/g++"; shift; next; } if (/^-noexternals$/) { $NOEXTERNALS = 1; next; } print "Unknown option: $_ : ignoring!\n"; |