summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-08-23 00:12:11 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-08-23 00:12:11 +0000
commit3376c6d8c572d25b87670cd44e00e018a27b37b3 (patch)
treedea87c151a735039cdd984bd1668a77d9541f362
parent37162a57ab5f3e5233515dd352fe6d92e670cab5 (diff)
downloadbcm5719-llvm-3376c6d8c572d25b87670cd44e00e018a27b37b3.tar.gz
bcm5719-llvm-3376c6d8c572d25b87670cd44e00e018a27b37b3.zip
Rearrange order to build more frequently used tools first and make the
triplet ordering (large, small, small) explicit with one triplet per line. llvm-svn: 29839
-rw-r--r--llvm/tools/Makefile15
1 files changed, 11 insertions, 4 deletions
diff --git a/llvm/tools/Makefile b/llvm/tools/Makefile
index 4788bfbcce1..1ea2311f93f 100644
--- a/llvm/tools/Makefile
+++ b/llvm/tools/Makefile
@@ -8,9 +8,16 @@
##===----------------------------------------------------------------------===##
LEVEL := ..
-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
+# Note .. the tools are organized in triples consisting of one large and two
+# small executables. This is done to minimize memory load in parallel builds.
+# Please retain this ordering.
+PARALLEL_DIRS := llvm-config \
+ opt llvm-as llvm-dis \
+ llc llvm-ranlib llvm-ar \
+ lli llvm-link llvm-nm \
+ bugpoint llvm-db llvm-extract \
+ gccas llvm-bcanalyzer llvm-stub \
+ gccld llvm2cpp \
+ llvm-ld llvmc llvm-prof
include $(LEVEL)/Makefile.common
OpenPOWER on IntegriCloud