[llvm-commits] CVS: llvm/tools/analyze/Makefile
John Criswell
criswell at cs.uiuc.edu
Wed Oct 26 13:35:48 PDT 2005
Changes in directory llvm/tools/analyze:
Makefile updated: 1.28 -> 1.29
---
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/analyze/Makefile
diff -u llvm/tools/analyze/Makefile:1.28 llvm/tools/analyze/Makefile:1.29
--- llvm/tools/analyze/Makefile:1.28 Sun Oct 23 20:07:56 2005
+++ llvm/tools/analyze/Makefile Wed Oct 26 15:35:12 2005
@@ -11,6 +11,6 @@
USEDLIBS = LLVMAsmParser LLVMBCReader LLVMAnalysis.a LLVMipa.a \
LLVMDataStructure \
LLVMScalarOpts.a LLVMTransforms.a LLVMTarget.a LLVMScalarOpts.a \
- LLVMTransformUtils.a LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a
+ LLVMTransformUtils LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a
include $(LEVEL)/Makefile.common
More information about the llvm-commits
mailing list