Skip to content

Commit

Permalink
Fix MacOSX build failures. (pr841)
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29246 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
Devang Patel committed Jul 21, 2006
1 parent 44819cb commit 2ebc1f8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions Makefile.rules
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion tools/llc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ USEDLIBS += LLVMARM
endif

USEDLIBS += \
LLVMSelectionDAG.a \
LLVMCodeGen.a \
LLVMSelectionDAG.a \
LLVMTarget.a \
LLVMipa.a \
LLVMTransforms.a \
Expand Down

0 comments on commit 2ebc1f8

Please sign in to comment.