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

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



Changes in directory llvm/tools/gccas:

Makefile updated: 1.24 -> 1.25
---
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/gccas/Makefile
diff -u llvm/tools/gccas/Makefile:1.24 llvm/tools/gccas/Makefile:1.25
--- llvm/tools/gccas/Makefile:1.24	Thu Oct 27 10:54:33 2005
+++ llvm/tools/gccas/Makefile	Wed May 31 20:30:26 2006
@@ -9,8 +9,8 @@
 LEVEL = ../..
 
 TOOLNAME = gccas
-USEDLIBS = LLVMAsmParser LLVMBCWriter LLVMTransforms.a LLVMipo.a LLVMipa.a \
+USEDLIBS = LLVMAsmParser.a LLVMBCWriter.a LLVMTransforms.a LLVMipo.a LLVMipa.a \
            LLVMScalarOpts.a LLVMAnalysis.a LLVMTarget.a LLVMTransformUtils.a \
-           LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a
+           LLVMCore.a LLVMSupport.a LLVMbzip2.a LLVMSystem.a
 
 include $(LEVEL)/Makefile.common






More information about the llvm-commits mailing list