[llvm-commits] CVS: llvm/lib/Makefile

Reid Spencer reid at x10sys.com
Wed May 17 15:55:48 PDT 2006



Changes in directory llvm/lib:

Makefile updated: 1.21 -> 1.22
---
Log message:

Make some changes suggested by Chris:
1. Remove the LLVM_DO_NOT_BUILD feature (not needed any more)
2. Ensure that lib/VMCore gets built first. This needs to be done because
   VMCore now uses tblgen to generate the Intrinsics header which are 
   needed in other libraries. In parallel builds, this can cause problems.


---
Diffs of the changes:  (+2 -2)

 Makefile |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/lib/Makefile
diff -u llvm/lib/Makefile:1.21 llvm/lib/Makefile:1.22
--- llvm/lib/Makefile:1.21	Wed May 17 16:54:48 2006
+++ llvm/lib/Makefile	Wed May 17 17:55:35 2006
@@ -8,8 +8,8 @@
 ##===----------------------------------------------------------------------===##
 LEVEL = ..
 
-DIRS = VMCore Analysis Transforms AsmParser Bytecode CodeGen Target \
-       ExecutionEngine Debugger Linker
+PARALLEL_DIRS = VMCore Analysis Transforms AsmParser Bytecode CodeGen Target \
+                ExecutionEngine Debugger Linker 
 
 include $(LEVEL)/Makefile.common
 






More information about the llvm-commits mailing list