summaryrefslogtreecommitdiff
path: root/tools/edis
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-07-20 21:26:27 +0000
committerChris Lattner <sabre@nondot.org>2010-07-20 21:26:27 +0000
commitc510a7097b05f49a39f89174c64c61fb5f5a8894 (patch)
tree464a2096e5d877b0efe6ac4c6790beec422b94d7 /tools/edis
parent6f2cea01860da12896efc7b1afdfd430c014fae3 (diff)
downloadllvm-c510a7097b05f49a39f89174c64c61fb5f5a8894.tar.gz
llvm-c510a7097b05f49a39f89174c64c61fb5f5a8894.tar.bz2
llvm-c510a7097b05f49a39f89174c64c61fb5f5a8894.tar.xz
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108934 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/edis')
-rw-r--r--tools/edis/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/edis/Makefile b/tools/edis/Makefile
index dc5aa441af..ff0e1a57a3 100644
--- a/tools/edis/Makefile
+++ b/tools/edis/Makefile
@@ -19,7 +19,7 @@ EXPORTED_SYMBOL_FILE = $(PROJ_SRC_DIR)/EnhancedDisassembly.exports
# 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),)