summaryrefslogtreecommitdiff
path: root/Makefile.rules
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-07-21 00:10:47 +0000
committerChris Lattner <sabre@nondot.org>2006-07-21 00:10:47 +0000
commit02b04b4d347b537becdf8453c511bf058fa4389a (patch)
tree04e0bf379e34c6f1d7e70032ed1cebb09f8cbf53 /Makefile.rules
parent6947e55aff7086d3ad654d4fa1ea9f51f4983424 (diff)
downloadllvm-02b04b4d347b537becdf8453c511bf058fa4389a.tar.gz
llvm-02b04b4d347b537becdf8453c511bf058fa4389a.tar.bz2
llvm-02b04b4d347b537becdf8453c511bf058fa4389a.tar.xz
Build more debugger/selectiondag libraries as archives instead of .o files.
This works around bugs in some versions of the cygwin linker. Patch contributed by Anton Korobeynikov. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29239 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.rules')
-rw-r--r--Makefile.rules6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.rules b/Makefile.rules
index bc938d1ab1..4de9228da6 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -620,7 +620,7 @@ endif
# What the X86 JIT requires
ifdef ENABLE_X86_JIT
- JIT_LIBS += LLVMX86 LLVMSelectionDAG
+ JIT_LIBS += LLVMX86 LLVMSelectionDAG.a
endif
# You can enable the PowerPC JIT on a non-PowerPC host by setting the flag
@@ -632,7 +632,7 @@ endif
# What the PowerPC JIT requires
ifdef ENABLE_PPC_JIT
- JIT_LIBS += LLVMPowerPC LLVMSelectionDAG
+ JIT_LIBS += LLVMPowerPC LLVMSelectionDAG.a
endif
# You can enable the Alpha JIT on a non-Alpha host by setting the flag
@@ -644,7 +644,7 @@ endif
# What the Alpha JIT requires
ifdef ENABLE_ALPHA_JIT
- JIT_LIBS += LLVMAlpha LLVMSelectionDAG
+ JIT_LIBS += LLVMAlpha LLVMSelectionDAG.a
endif
LLVMLIBS := $(JIT_LIBS) LLVMScalarOpts.a LLVMTransformUtils.a LLVMAnalysis.a \