diff options
author | Chris Lattner <sabre@nondot.org> | 2006-09-04 04:47:49 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-09-04 04:47:49 +0000 |
commit | 9bf8ea26a9b9571cab76819cc69f3bfa857610a8 (patch) | |
tree | 5cb466b0a8031c405c1fdec9791b2dbdddc8ada3 /tools/llvm-as | |
parent | ef0d0f12f0a37a0c4a907b67b04bcdc73c9dda9e (diff) | |
download | external_llvm-9bf8ea26a9b9571cab76819cc69f3bfa857610a8.zip external_llvm-9bf8ea26a9b9571cab76819cc69f3bfa857610a8.tar.gz external_llvm-9bf8ea26a9b9571cab76819cc69f3bfa857610a8.tar.bz2 |
Switch to using llvm-config to select components to link in.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30085 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-as')
-rw-r--r-- | tools/llvm-as/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/llvm-as/Makefile b/tools/llvm-as/Makefile index bd7c3d3..aa64d06 100644 --- a/tools/llvm-as/Makefile +++ b/tools/llvm-as/Makefile @@ -6,10 +6,10 @@ # the University of Illinois Open Source License. See LICENSE.TXT for details. # ##===----------------------------------------------------------------------===## + LEVEL = ../.. TOOLNAME = llvm-as -USEDLIBS = LLVMAsmParser.a LLVMBCWriter.a LLVMCore.a \ - LLVMSupport.a LLVMbzip2.a LLVMSystem.a +LINK_COMPONENTS := asmparser bcwriter REQUIRES_EH := 1 include $(LEVEL)/Makefile.common |