aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-07-13 22:31:58 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-07-13 22:31:58 +0000
commitdd9c4aa4bdf021bbcf7a6a4b22c440c802161ae7 (patch)
tree6a319cffef6a3a16be52b3dd0fe90debf318a6de /utils
parent512229fda645be8956a145015d53cb2bedc102d6 (diff)
downloadexternal_llvm-dd9c4aa4bdf021bbcf7a6a4b22c440c802161ae7.zip
external_llvm-dd9c4aa4bdf021bbcf7a6a4b22c440c802161ae7.tar.gz
external_llvm-dd9c4aa4bdf021bbcf7a6a4b22c440c802161ae7.tar.bz2
NewNightlyTest.pl - Add -configure-args option.
- For adding arbitrary arguments to pass to configure. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75535 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rwxr-xr-xutils/NewNightlyTest.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/NewNightlyTest.pl b/utils/NewNightlyTest.pl
index 09e6e30..fd38a05 100755
--- a/utils/NewNightlyTest.pl
+++ b/utils/NewNightlyTest.pl
@@ -181,6 +181,8 @@ while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) {
shift; next; }
if (/^-with-externals$/) { $CONFIGUREARGS .= " --with-externals=$ARGV[0]";
shift; next; }
+ if (/^-configure-args$/) { $CONFIGUREARGS .= " $ARGV[0]";
+ shift; next; }
if (/^-submit-server/) { $SUBMITSERVER = "$ARGV[0]"; shift; next; }
if (/^-submit-script/) { $SUBMITSCRIPT = "$ARGV[0]"; shift; next; }
if (/^-submit-aux/) { $SUBMITAUX = "$ARGV[0]"; shift; next; }