diff options
author | Chris Lattner <sabre@nondot.org> | 2003-07-31 16:05:11 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-07-31 16:05:11 +0000 |
commit | 6058fd35896ca24f00d81e587e5a6c73f828fae3 (patch) | |
tree | 0aa5f6d9626663f67120070e7b5bc076adcdd45a /utils/NightlyTest.pl | |
parent | 506dad06640177ed1268a7fea84f1a8eb6135faa (diff) | |
download | external_llvm-6058fd35896ca24f00d81e587e5a6c73f828fae3.zip external_llvm-6058fd35896ca24f00d81e587e5a6c73f828fae3.tar.gz external_llvm-6058fd35896ca24f00d81e587e5a6c73f828fae3.tar.bz2 |
Forget about KEEP_SYMBOLS, make sure to build into the temp directory, not into localhome
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7450 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/NightlyTest.pl')
-rwxr-xr-x | utils/NightlyTest.pl | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl index 5f77da9..aaa7a80 100755 --- a/utils/NightlyTest.pl +++ b/utils/NightlyTest.pl @@ -151,9 +151,7 @@ $LOC = GetRegex "([0-9]+) +total", `wc -l \`utils/getsrcs.sh\` | grep total`; # Build the entire tree, saving build messages to the build log # if (!$NOCHECKOUT) { - system "(time -p ./configure --enable-jit) > $Prefix-Build-Log.txt 2>&1"; - # Change the Makefile.config to not strip executables... - system "echo 'KEEP_SYMBOLS := 1' >> Makefile.config"; + system "(time -p ./configure --enable-jit --with-objroot=.) > $Prefix-Build-Log.txt 2>&1"; # Build the entire tree, capturing the output into $Prefix-Build-Log.txt system "(time -p gmake $MAKEOPTS) >> $Prefix-Build-Log.txt 2>&1"; |