[llvm-commits] [llvm] r108934 - /llvm/trunk/tools/edis/Makefile

Chris Lattner sabre at nondot.org
Tue Jul 20 14:26:27 PDT 2010


Author: lattner
Date: Tue Jul 20 16:26:27 2010
New Revision: 108934

URL: http://llvm.org/viewvc/llvm-project?rev=108934&view=rev
Log:
there is now no reason to link in TARGETS_TO_BUILD since we list
arm explicitly.  X86 and ARM are the only two targets that support
disassembly, so our explicit list is enough.  These other targets
weren't getting pulled in anyway though, since there were no 
references to their symbols.

Modified:
    llvm/trunk/tools/edis/Makefile

Modified: llvm/trunk/tools/edis/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/edis/Makefile?rev=108934&r1=108933&r2=108934&view=diff
==============================================================================
--- llvm/trunk/tools/edis/Makefile (original)
+++ llvm/trunk/tools/edis/Makefile Tue Jul 20 16:26:27 2010
@@ -19,7 +19,7 @@
 # early so we can set up LINK_COMPONENTS before including Makefile.rules
 include $(LEVEL)/Makefile.config
 
-LINK_COMPONENTS := $(TARGETS_TO_BUILD) mcdisassembler
+LINK_COMPONENTS := mcdisassembler
 
 # If the X86 target is enabled, link in the asmprinter and disassembler.
 ifneq ($(filter $(TARGETS_TO_BUILD), X86),)





More information about the llvm-commits mailing list