[llvm-commits] CVS: llvm/tools/Makefile.JIT
Reid Spencer
reid at x10sys.com
Wed Oct 27 16:19:06 PDT 2004
Changes in directory llvm/tools:
Makefile.JIT updated: 1.2 -> 1.3
---
Log message:
Change Library Names Not To Conflict With Others When Installed
---
Diffs of the changes: (+10 -9)
Index: llvm/tools/Makefile.JIT
diff -u llvm/tools/Makefile.JIT:1.2 llvm/tools/Makefile.JIT:1.3
--- llvm/tools/Makefile.JIT:1.2 Thu Oct 14 15:06:36 2004
+++ llvm/tools/Makefile.JIT Wed Oct 27 18:18:45 2004
@@ -18,7 +18,7 @@
include $(LEVEL)/Makefile.config
# Generic JIT libraries
-JITLIBS = lli-jit codegen executionengine
+JITLIBS = LLVMJIT LLVMCodeGen LLVMExecutionEngine
ARCHLIBS =
# You can enable the X86 JIT on a non-X86 host by setting the flag
@@ -30,7 +30,7 @@
# What the X86 JIT requires
ifdef ENABLE_X86_JIT
- JITLIBS += x86 selectiondag
+ JITLIBS += LLVMX86 LLVMSelectionDAG
# X86 doesn't require any ARCHLIBS
endif
@@ -43,10 +43,10 @@
# What the Sparc JIT requires
ifdef ENABLE_SPARCV9_JIT
- JITLIBS += sparcv9
- ARCHLIBS += sparcv9sched sparcv9livevar instrument.a profpaths \
- bcwriter transforms.a ipo.a ipa.a datastructure.a \
- sparcv9regalloc
+ JITLIBS += LLVMSparcV9
+ ARCHLIBS += LLVMSparcV9sched LLVMSparcV9livevar LLVMInstrumentation.a \
+ LLVMProfilePaths LLVMBCWriter LLVMTransforms.a LLVMipo.a LLVMipa.a \
+ LLVMDataStructure.a LLVMSparcV9regalloc
endif
# You can enable the PowerPC JIT on a non-PowerPC host by setting the flag
@@ -58,8 +58,9 @@
# What the PowerPC JIT requires
ifdef ENABLE_PPC_JIT
- JITLIBS += powerpc
+ JITLIBS += LLVMPowerPC
endif
-USEDLIBS += lli-interpreter $(JITLIBS) $(ARCHLIBS) scalaropts analysis.a \
- transformutils.a bcreader vmcore support target.a LLVMsystem.a
+USEDLIBS += LLVMInterpreter $(JITLIBS) $(ARCHLIBS) LLVMScalarOpts \
+ LLVMAnalysis.a LLVMTransformUtils.a LLVMBCReader LLVMCore \
+ LLVMSupport.a LLVMTarget.a LLVMSystem.a
More information about the llvm-commits
mailing list