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 | e96a1a576becba35edc318b63ab85448d810854f (patch) | |
tree | cb1e498fd2e6d5f7171d3d3a521cedbd4cb128d0 /tools/gccas/Makefile | |
parent | 2012cc013cd0ee3c64290f97bfaede4d4f154802 (diff) | |
download | external_llvm-e96a1a576becba35edc318b63ab85448d810854f.zip external_llvm-e96a1a576becba35edc318b63ab85448d810854f.tar.gz external_llvm-e96a1a576becba35edc318b63ab85448d810854f.tar.bz2 |
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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24023 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/gccas/Makefile')
-rw-r--r-- | tools/gccas/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gccas/Makefile b/tools/gccas/Makefile index 32c10c8..8359a76 100644 --- a/tools/gccas/Makefile +++ b/tools/gccas/Makefile @@ -10,7 +10,7 @@ LEVEL = ../.. TOOLNAME = gccas USEDLIBS = LLVMAsmParser LLVMBCWriter LLVMTransforms.a LLVMipo.a LLVMipa.a \ - LLVMScalarOpts.a LLVMAnalysis.a LLVMTarget.a LLVMTransformUtils.a \ + LLVMScalarOpts.a LLVMAnalysis.a LLVMTarget.a LLVMTransformUtils \ LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a include $(LEVEL)/Makefile.common |