[llvm-commits] CVS: llvm/tools/Makefile
Reid Spencer
reid at x10sys.com
Tue Aug 22 17:12:26 PDT 2006
Changes in directory llvm/tools:
Makefile updated: 1.53 -> 1.54
---
Log message:
Rearrange order to build more frequently used tools first and make the
triplet ordering (large, small, small) explicit with one triplet per line.
---
Diffs of the changes: (+11 -4)
Makefile | 15 +++++++++++----
1 files changed, 11 insertions(+), 4 deletions(-)
Index: llvm/tools/Makefile
diff -u llvm/tools/Makefile:1.53 llvm/tools/Makefile:1.54
--- llvm/tools/Makefile:1.53 Tue Aug 22 19:06:14 2006
+++ llvm/tools/Makefile Tue Aug 22 19:12:11 2006
@@ -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
More information about the llvm-commits
mailing list