summaryrefslogtreecommitdiff
path: root/tools/Makefile
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-08-22 23:21:21 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-08-22 23:21:21 +0000
commitab96bb1df3987b94fcd897e97f917ecd064deed3 (patch)
treee9b46c72cab9f0bf5a52a9ee9eb8716a245e83b2 /tools/Makefile
parentcab0e43829f33164429a0ffc6c4a9cdacc0a95b7 (diff)
downloadllvm-ab96bb1df3987b94fcd897e97f917ecd064deed3.tar.gz
llvm-ab96bb1df3987b94fcd897e97f917ecd064deed3.tar.bz2
llvm-ab96bb1df3987b94fcd897e97f917ecd064deed3.tar.xz
Rearrange the build order to better accommodate parallel build by reducing
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
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/Makefile b/tools/Makefile
index 649c655be9..7a062e54f1 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -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