1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

Fix MacOSX build failures. (pr841)

llvm-svn: 29246
This commit is contained in:
Devang Patel 2006-07-21 19:44:55 +00:00
parent 9ea0bc742c
commit 66bddd67f1
2 changed files with 6 additions and 5 deletions

View File

@ -609,7 +609,8 @@ ifeq ($(LLVMLIBS),JIT)
Link += -dlopen self
# Generic JIT libraries
JIT_LIBS := LLVMInterpreter LLVMJIT LLVMCodeGen.a LLVMExecutionEngine
JIT_LIBS := LLVMInterpreter LLVMJIT LLVMSelectionDAG.a LLVMCodeGen.a \
LLVMExecutionEngine
# You can enable the X86 JIT on a non-X86 host by setting the flag
# ENABLE_X86_JIT on the make command line. If not, it will still be
@ -620,7 +621,7 @@ endif
# What the X86 JIT requires
ifdef ENABLE_X86_JIT
JIT_LIBS += LLVMX86 LLVMSelectionDAG.a
JIT_LIBS += LLVMX86
endif
# You can enable the PowerPC JIT on a non-PowerPC host by setting the flag
@ -632,7 +633,7 @@ endif
# What the PowerPC JIT requires
ifdef ENABLE_PPC_JIT
JIT_LIBS += LLVMPowerPC LLVMSelectionDAG.a
JIT_LIBS += LLVMPowerPC
endif
# You can enable the Alpha JIT on a non-Alpha host by setting the flag
@ -644,7 +645,7 @@ endif
# What the Alpha JIT requires
ifdef ENABLE_ALPHA_JIT
JIT_LIBS += LLVMAlpha LLVMSelectionDAG.a
JIT_LIBS += LLVMAlpha
endif
LLVMLIBS := $(JIT_LIBS) LLVMScalarOpts.a LLVMTransformUtils.a LLVMAnalysis.a \

View File

@ -55,8 +55,8 @@ USEDLIBS += LLVMARM
endif
USEDLIBS += \
LLVMSelectionDAG.a \
LLVMCodeGen.a \
LLVMSelectionDAG.a \
LLVMTarget.a \
LLVMipa.a \
LLVMTransforms.a \