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

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



Changes in directory llvm/tools/llvm-db:

Makefile updated: 1.9 -> 1.10
---
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 -1)

 Makefile |    3 ++-
 1 files changed, 2 insertions(+), 1 deletion(-)


Index: llvm/tools/llvm-db/Makefile
diff -u llvm/tools/llvm-db/Makefile:1.9 llvm/tools/llvm-db/Makefile:1.10
--- llvm/tools/llvm-db/Makefile:1.9	Sat Apr 22 00:04:23 2006
+++ llvm/tools/llvm-db/Makefile	Wed May 31 20:30:26 2006
@@ -9,6 +9,7 @@
 
 LEVEL = ../..
 TOOLNAME = llvm-db
-USEDLIBS = LLVMDebugger LLVMBCReader LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a
+USEDLIBS = LLVMDebugger LLVMBCReader.a LLVMCore.a LLVMSupport.a \
+	  LLVMbzip2.a LLVMSystem.a
 
 include $(LEVEL)/Makefile.common






More information about the llvm-commits mailing list