Use LINK_COMPONENTS instead of hard coding LLVM libraries.

llvm-svn: 58076
This commit is contained in:
Daniel Dunbar 2008-10-24 06:24:13 +00:00
parent 730d5dade6
commit d3963f7f25
1 changed files with 2 additions and 5 deletions

View File

@ -8,12 +8,9 @@ CXXFLAGS = -fno-rtti
# early so we can set up LINK_COMPONENTS before including Makefile.rules
include $(LEVEL)/Makefile.config
LINK_COMPONENTS := $(TARGETS_TO_BUILD)
LINK_COMPONENTS := $(TARGETS_TO_BUILD) bitreader bitwriter codegen ipo selectiondag
USEDLIBS = clangCodeGen.a clangAnalysis.a clangRewrite.a clangSema.a \
clangDriver.a clangAST.a clangParse.a clangLex.a \
clangBasic.a LLVMCore.a LLVMSupport.a LLVMSystem.a \
LLVMBitWriter.a LLVMBitReader.a LLVMSelectionDAG.a \
LLVMCodeGen.a LLVMTransformUtils.a LLVMScalarOpts.a \
LLVMAnalysis.a LLVMTarget.a LLVMipo.a
clangBasic.a
include $(LLVM_SRC_ROOT)/Makefile.rules