Rearrange the build order to better accommodate parallel build by reducing
authorReid Spencer <rspencer@reidspencer.com>
Tue, 22 Aug 2006 23:21:21 +0000 (23:21 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Tue, 22 Aug 2006 23:21:21 +0000 (23:21 +0000)
memory pressure. This order spaces out large executables with small ones in
between so that in a -j2 or -j3 build, it only attempts to build only one
large executable at time. If you're doing -j4, you probably have enuogh
memory anyway.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29835 91177308-0d34-0410-b5e6-96231b3b80d8

tools/Makefile

index 649c655be9ff4b0e548a9fb8039cc15be6301b39..7a062e54f1eeabc45130ade4cfb88ec2e041f8a6 100644 (file)
@@ -8,8 +8,9 @@
 ##===----------------------------------------------------------------------===##
 
 LEVEL := ..
-PARALLEL_DIRS := llvm-config llvm-as llvm-dis opt gccas llc llvm-link lli gccld\
-                 llvm-stub llvm-extract llvm-nm llvm-prof llvm-ar llvm-ranlib \
-                llvm-bcanalyzer llvmc llvm-ld llvm-db bugpoint llvm2cpp
+PARALLEL_DIRS := llvm-config opt llvm-as -llvm-dis llc llvm-bcanalyzer \
+                 llvm-extract lli llvm-db llvm-ar llvm-ld llvm-prof llvm-nm \
+                 gccas llvm-ranlib llvm-stub gccld llvm2cpp \
+                 bugpoint llvmc llvm-link
 
 include $(LEVEL)/Makefile.common