[llvm-commits] CVS: llvm/tools/llc/Makefile

Reid Spencer reid at x10sys.com
Wed May 31 18:31:05 PDT 2006



Changes in directory llvm/tools/llc:

Makefile updated: 1.81 -> 1.82
---
Log message:

Use archive libraries instead of object files for VMCore, BCReader, 
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.


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

 Makefile |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)


Index: llvm/tools/llc/Makefile
diff -u llvm/tools/llc/Makefile:1.81 llvm/tools/llc/Makefile:1.82
--- llvm/tools/llc/Makefile:1.81	Sun May 14 17:18:28 2006
+++ llvm/tools/llc/Makefile	Wed May 31 20:30:26 2006
@@ -56,17 +56,17 @@
 USEDLIBS += \
 	LLVMSelectionDAG \
 	LLVMCodeGen \
-	LLVMTarget.a \
+	LLVMTarget \
 	LLVMipa.a \
 	LLVMTransforms.a \
 	LLVMScalarOpts.a \
 	LLVMTransformUtils.a \
 	LLVMAnalysis.a \
-	LLVMBCReader \
-	LLVMBCWriter \
-	LLVMCore \
+	LLVMBCReader.a \
+	LLVMBCWriter.a \
+	LLVMCore.a \
 	LLVMSupport.a \
-	LLVMbzip2 \
+	LLVMbzip2.a \
 	LLVMSystem.a
 
 include $(LLVM_SRC_ROOT)/Makefile.rules






More information about the llvm-commits mailing list