llvm-mc: Add -triple, and start fetching the target asm printer.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76257 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar
2009-07-17 22:38:58 +00:00
parent cbdf0e2455
commit b4b53e5c13
24 changed files with 82 additions and 28 deletions

View File

@@ -9,9 +9,15 @@
LEVEL = ../..
TOOLNAME = llvm-mc
LINK_COMPONENTS := support MC
# This tool has no plugins, optimize startup time.
TOOL_NO_EXPORTS = 1
include $(LEVEL)/Makefile.common
# Include this here so we can get the configuration of the targets
# that have been configured for construction. We have to do this
# early so we can set up LINK_COMPONENTS before including Makefile.rules
include $(LEVEL)/Makefile.config
LINK_COMPONENTS := $(TARGETS_TO_BUILD) MC support
include $(LLVM_SRC_ROOT)/Makefile.rules