[llvm-commits] [dragonegg] r106095 - /dragonegg/trunk/extras/do_self_strap
Duncan Sands
baldrick at free.fr
Wed Jun 16 01:50:52 PDT 2010
Author: baldrick
Date: Wed Jun 16 03:50:52 2010
New Revision: 106095
URL: http://llvm.org/viewvc/llvm-project?rev=106095&view=rev
Log:
Do not use -l: sometimes it starts vast numbers of simultaneous
compilations, which then cause the machine to grind to a halt
with mad swapping.
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=106095&r1=106094&r2=106095&view=diff
==============================================================================
--- dragonegg/trunk/extras/do_self_strap (original)
+++ dragonegg/trunk/extras/do_self_strap Wed Jun 16 03:50:52 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 -j -l3" # How to run make
+MAKE="nice -n 20 make -j2" # How to run make
MAKE_INSTALL="nice -n 20 make install" # How to run make install
More information about the llvm-commits
mailing list