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

John Criswell criswell at cs.uiuc.edu
Wed Oct 26 13:35:48 PDT 2005



Changes in directory llvm/tools/llvm-ld:

Makefile updated: 1.5 -> 1.6
---
Log message:

1. Remove libraries no longer created from the list of libraries linked into the
   SparcV9 JIT.
2. Make LLVMTransformUtils a relinked object file and always link it before
   LLVMAnalysis.a.  These two libraries have circular dependencies on each
   other which creates problem when building the SparcV9 JIT.  This change
   fixes the dependency on all platforms problems with a minimum of fuss.



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

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


Index: llvm/tools/llvm-ld/Makefile
diff -u llvm/tools/llvm-ld/Makefile:1.5 llvm/tools/llvm-ld/Makefile:1.6
--- llvm/tools/llvm-ld/Makefile:1.5	Thu Nov 25 14:22:07 2004
+++ llvm/tools/llvm-ld/Makefile	Wed Oct 26 15:35:13 2005
@@ -11,7 +11,7 @@
 
 TOOLNAME = llvm-ld
 USEDLIBS = LLVMipo.a LLVMTransforms.a LLVMScalarOpts.a LLVMAnalysis.a \
-	   LLVMipa.a LLVMTransformUtils.a LLVMTarget.a LLVMLinker.a \
+	   LLVMipa.a LLVMTransformUtils LLVMTarget.a LLVMLinker.a \
 	   LLVMArchive.a LLVMBCReader LLVMBCWriter \
 	   LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a
 






More information about the llvm-commits mailing list