diff options
author | Chris Lattner <sabre@nondot.org> | 2006-09-04 05:59:09 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-09-04 05:59:09 +0000 |
commit | aea932d27fa41bebaa8576b6002637e74054a7c4 (patch) | |
tree | 79307bf652e355249255cdae9ad82c5c2d997f5d /tools/lto | |
parent | 54eae9e1ec35db90a6f33dd8053c533861771bb6 (diff) |
Use LINK_COMPONENTS to specify *components* to link against instead of
using USED_LIBS to specify *libraries* to link against.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30090 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/lto')
-rw-r--r-- | tools/lto/Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/tools/lto/Makefile b/tools/lto/Makefile index c2daead4df..c7befa44c1 100644 --- a/tools/lto/Makefile +++ b/tools/lto/Makefile @@ -17,14 +17,10 @@ DONT_BUILD_RELINKED = 1 # Include this here so we can get the configuration of the targets # that have been configured for construction. We have to do this -# early so we can set up USEDLIBS properly before includeing Makefile.rules +# early so we can set up LINK_COMPONENTS before includeing Makefile.rules include $(LEVEL)/Makefile.config -USEDLIBS := $(addprefix LLVM,$(TARGETS_TO_BUILD)) \ - LLVMSelectionDAG.a LLVMCodeGen.a LLVMipo.a LLVMTransforms.a \ - LLVMScalarOpts.a LLVMipa.a LLVMTransformUtils.a LLVMAnalysis.a \ - LLVMTarget.a LLVMBCReader.a LLVMBCWriter.a LLVMSystem.a LLVMLinker.a \ - LLVMCore.a LLVMSupport.a LLVMbzip2.a +LINK_COMPONENTS := $(TARGETS_TO_BUILD) ipo scalaropts bcreader bcwriter include $(LEVEL)/Makefile.common |