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/llvm-ranlib | |
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/llvm-ranlib')
-rw-r--r-- | tools/llvm-ranlib/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/llvm-ranlib/Makefile b/tools/llvm-ranlib/Makefile index 1379532f5e..ca4d0ce85d 100644 --- a/tools/llvm-ranlib/Makefile +++ b/tools/llvm-ranlib/Makefile @@ -9,8 +9,7 @@ LEVEL = ../.. TOOLNAME = llvm-ranlib -USEDLIBS = LLVMArchive.a LLVMBCReader.a \ - LLVMCore.a LLVMSupport.a LLVMbzip2.a LLVMSystem.a +LINK_COMPONENTS = archive bcreader REQUIRES_EH := 1 include $(LEVEL)/Makefile.common |