diff options
author | John Criswell <criswell@uiuc.edu> | 2005-10-26 20:35:13 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2005-10-26 20:35:13 +0000 |
commit | 94b7bea73315dcc4c6aa8c8690fb606f00e9435f (patch) | |
tree | b512af41c3b64c27d76a398d5dd8b015bce9d177 /llvm/tools/llvm-ld | |
parent | 381cab36edbc2b426b847ba09a6d9f0a10114ee9 (diff) | |
download | bcm5719-llvm-94b7bea73315dcc4c6aa8c8690fb606f00e9435f.tar.gz bcm5719-llvm-94b7bea73315dcc4c6aa8c8690fb606f00e9435f.zip |
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.
llvm-svn: 24023
Diffstat (limited to 'llvm/tools/llvm-ld')
-rw-r--r-- | llvm/tools/llvm-ld/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-ld/Makefile b/llvm/tools/llvm-ld/Makefile index 34d6dc69ca4..880df9f4fc6 100644 --- a/llvm/tools/llvm-ld/Makefile +++ b/llvm/tools/llvm-ld/Makefile @@ -11,7 +11,7 @@ LEVEL = ../.. 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 |