[llvm-commits] [dragonegg] r107192 - /dragonegg/trunk/extras/do_self_strap

Duncan Sands baldrick at free.fr
Tue Jun 29 11:57:51 PDT 2010


Author: baldrick
Date: Tue Jun 29 13:57:50 2010
New Revision: 107192

URL: http://llvm.org/viewvc/llvm-project?rev=107192&view=rev
Log:
Launch more parallel jobs, but only if the load average
is not too high (it is often high on gcc compile farm
machines, which is where the self-host testers run).

Modified:
    dragonegg/trunk/extras/do_self_strap

Modified: dragonegg/trunk/extras/do_self_strap
URL: http://llvm.org/viewvc/llvm-project/dragonegg/trunk/extras/do_self_strap?rev=107192&r1=107191&r2=107192&view=diff
==============================================================================
--- dragonegg/trunk/extras/do_self_strap (original)
+++ dragonegg/trunk/extras/do_self_strap Tue Jun 29 13:57:50 2010
@@ -57,7 +57,7 @@
 	      --disable-threads --enable-debug-symbols $LLVM_OPTIONS"
 
 COMPARE="cmp --ignore-initial=16"	# How to compare object files
-MAKE="nice -n 20 make -j2"		# How to run make
+MAKE="nice -n 20 make -j3 -l2"		# How to run make
 MAKE_INSTALL="nice -n 20 make install"	# How to run make install
 
 





More information about the llvm-commits mailing list