[cfe-commits] r58076 - /cfe/trunk/Driver/Makefile
Daniel Dunbar
daniel at zuster.org
Thu Oct 23 23:24:13 PDT 2008
Author: ddunbar
Date: Fri Oct 24 01:24:13 2008
New Revision: 58076
URL: http://llvm.org/viewvc/llvm-project?rev=58076&view=rev
Log:
Use LINK_COMPONENTS instead of hard coding LLVM libraries.
Modified:
cfe/trunk/Driver/Makefile
Modified: cfe/trunk/Driver/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/Driver/Makefile?rev=58076&r1=58075&r2=58076&view=diff
==============================================================================
--- cfe/trunk/Driver/Makefile (original)
+++ cfe/trunk/Driver/Makefile Fri Oct 24 01:24:13 2008
@@ -8,12 +8,9 @@
# 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
More information about the cfe-commits
mailing list