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

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



Changes in directory llvm/tools/llvm-link:

Makefile updated: 1.12 -> 1.13
---
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:  (+2 -2)

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


Index: llvm/tools/llvm-link/Makefile
diff -u llvm/tools/llvm-link/Makefile:1.12 llvm/tools/llvm-link/Makefile:1.13
--- llvm/tools/llvm-link/Makefile:1.12	Thu Nov 25 14:22:07 2004
+++ llvm/tools/llvm-link/Makefile	Wed May 31 20:30:27 2006
@@ -9,7 +9,7 @@
 LEVEL = ../..
 
 TOOLNAME = llvm-link
-USEDLIBS = LLVMLinker.a LLVMBCReader LLVMBCWriter \
-	   LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a
+USEDLIBS = LLVMLinker.a LLVMBCReader.a LLVMBCWriter.a \
+	   LLVMCore.a LLVMSupport.a LLVMbzip2.a LLVMSystem.a
 
 include $(LEVEL)/Makefile.common






More information about the llvm-commits mailing list