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

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



Changes in directory llvm/tools/opt:

Makefile updated: 1.54 -> 1.55
---
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:  (+3 -3)

 Makefile |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/tools/opt/Makefile
diff -u llvm/tools/opt/Makefile:1.54 llvm/tools/opt/Makefile:1.55
--- llvm/tools/opt/Makefile:1.54	Tue Feb 21 18:59:06 2006
+++ llvm/tools/opt/Makefile	Wed May 31 20:30:27 2006
@@ -9,9 +9,9 @@
 LEVEL = ../..
 TOOLNAME = opt
 
-USEDLIBS = LLVMBCReader LLVMBCWriter LLVMInstrumentation.a \
+USEDLIBS = LLVMBCReader.a LLVMBCWriter.a LLVMInstrumentation.a \
 	   LLVMScalarOpts.a LLVMipo.a LLVMipa.a LLVMDataStructure LLVMTransforms.a \
-	   LLVMTarget.a LLVMTransformUtils.a LLVMAnalysis.a LLVMCore LLVMSupport.a \
-	   LLVMbzip2 LLVMSystem.a 
+	   LLVMTarget.a LLVMTransformUtils.a LLVMAnalysis.a LLVMCore.a LLVMSupport.a \
+	   LLVMbzip2.a LLVMSystem.a 
 
 include $(LEVEL)/Makefile.common






More information about the llvm-commits mailing list