summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-09-04 01:02:25 +0000
committerChris Lattner <sabre@nondot.org>2006-09-04 01:02:25 +0000
commitde54ffc225c4a1510f100f41df7bb126fcd5ec3d (patch)
tree1a06cf3ff376992d558692a0fdf4e7b2129cbdb8
parent9183d57c37510e5f7da94feb7bbe7c5c22a11ace (diff)
downloadbcm5719-llvm-de54ffc225c4a1510f100f41df7bb126fcd5ec3d.tar.gz
bcm5719-llvm-de54ffc225c4a1510f100f41df7bb126fcd5ec3d.zip
Rearrange library linkage order.
llvm-svn: 30074
-rw-r--r--llvm/Makefile.rules7
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/Makefile.rules b/llvm/Makefile.rules
index 457c7f8a27c..b08725a367f 100644
--- a/llvm/Makefile.rules
+++ b/llvm/Makefile.rules
@@ -641,8 +641,7 @@ ifeq ($(LLVMLIBS),JIT)
Link += -dlopen self
# Generic JIT libraries
-JIT_LIBS := LLVMInterpreter LLVMJIT LLVMSelectionDAG.a LLVMCodeGen.a \
- LLVMExecutionEngine
+JIT_LIBS := LLVMInterpreter LLVMJIT
# 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
@@ -680,8 +679,10 @@ ifdef ENABLE_ALPHA_JIT
JIT_LIBS += LLVMAlpha
endif
+JIT_LIBS += LLVMTarget.a LLVMSelectionDAG.a LLVMCodeGen.a LLVMExecutionEngine
+
LLVMLIBS := $(JIT_LIBS) LLVMScalarOpts.a LLVMTransformUtils.a LLVMAnalysis.a \
- LLVMBCReader.a LLVMTarget.a LLVMCore.a LLVMSupport.a LLVMbzip2.a \
+ LLVMBCReader.a LLVMCore.a LLVMSupport.a LLVMbzip2.a \
LLVMSystem.a $(PLATFORMLIBDL)
endif
OpenPOWER on IntegriCloud