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 | 28689ff2d0b6b0596834e5889cef360385c11c53 (patch) | |
tree | e380d600f91758ec2710e948104122d39e165a5e /llvm/tools/llvm2cpp | |
parent | 2d4cae98963c146c0faf2f4aa4a43ae406aee43a (diff) | |
download | bcm5719-llvm-28689ff2d0b6b0596834e5889cef360385c11c53.tar.gz bcm5719-llvm-28689ff2d0b6b0596834e5889cef360385c11c53.zip |
Use LINK_COMPONENTS to specify *components* to link against instead of
using USED_LIBS to specify *libraries* to link against.
llvm-svn: 30090
Diffstat (limited to 'llvm/tools/llvm2cpp')
-rw-r--r-- | llvm/tools/llvm2cpp/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/tools/llvm2cpp/Makefile b/llvm/tools/llvm2cpp/Makefile index cc3169c46f1..88db590c9bf 100644 --- a/llvm/tools/llvm2cpp/Makefile +++ b/llvm/tools/llvm2cpp/Makefile @@ -8,10 +8,9 @@ ##===----------------------------------------------------------------------===## LEVEL = ../.. TOOLNAME = llvm2cpp -USEDLIBS = LLVMBCReader.a LLVMCore.a LLVMSupport.a LLVMbzip2.a LLVMSystem.a +LINK_COMPONENTS = bcreader REQUIRES_EH := 1 include $(LEVEL)/Makefile.common CompileCommonOpts := $(filter-out -pedantic,$(CompileCommonOpts)) -CompileCommonOpts := $(filter-out -Wno-long-long,$(CompileCommonOpts)) |