NewNightlyTest.pl - Add -configure-args option.

- For adding arbitrary arguments to pass to configure.

llvm-svn: 75535
This commit is contained in:
Daniel Dunbar 2009-07-13 22:31:58 +00:00
parent 116e3b3ef1
commit e12dcd976d
1 changed files with 2 additions and 0 deletions

View File

@ -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; }