[llvm-commits] CVS: llvm/utils/NightlyTest.pl
Chris Lattner
lattner at cs.uiuc.edu
Tue Jul 27 01:29:16 PDT 2004
Changes in directory llvm/utils:
NightlyTest.pl updated: 1.60 -> 1.61
---
Log message:
Ugh, the upgrade of zion brought in GCC 3.3.2, our arch nemesis.
---
Diffs of the changes: (+2 -0)
Index: llvm/utils/NightlyTest.pl
diff -u llvm/utils/NightlyTest.pl:1.60 llvm/utils/NightlyTest.pl:1.61
--- llvm/utils/NightlyTest.pl:1.60 Fri Jun 25 02:25:28 2004
+++ llvm/utils/NightlyTest.pl Tue Jul 27 03:29:06 2004
@@ -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 at host:/dir syntax, or
@@ -269,6 +270,7 @@
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";
More information about the llvm-commits
mailing list