summaryrefslogtreecommitdiff
path: root/lib/MC/MCDisassembler/LLVMBuild.txt
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2011-11-11 13:20:40 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2011-11-11 13:20:40 +0000
commit178051fbae2b224ecc5aa20e39b7cee3ab38e760 (patch)
tree92ac4e304f300cb08780d19f684cc6fe7a62d59e /lib/MC/MCDisassembler/LLVMBuild.txt
parenteea66f63d98771a2772f5173debf954a81f3f782 (diff)
downloadllvm-178051fbae2b224ecc5aa20e39b7cee3ab38e760.tar.gz
llvm-178051fbae2b224ecc5aa20e39b7cee3ab38e760.tar.bz2
llvm-178051fbae2b224ecc5aa20e39b7cee3ab38e760.tar.xz
Clients are responsible for initializing the targets, remove it from the disassembler API.
This will break users of the LLVMCreateDisasm API (not that I know of any). They have to call the LLVMInitializeAll* functions from llvm-c/Target.h themselves now. edis' C API in all its horribleness should be unaffected. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144385 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/MCDisassembler/LLVMBuild.txt')
-rw-r--r--lib/MC/MCDisassembler/LLVMBuild.txt5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/MC/MCDisassembler/LLVMBuild.txt b/lib/MC/MCDisassembler/LLVMBuild.txt
index 7b8c7ffc28..d73c6adcbb 100644
--- a/lib/MC/MCDisassembler/LLVMBuild.txt
+++ b/lib/MC/MCDisassembler/LLVMBuild.txt
@@ -19,7 +19,4 @@
type = Library
name = MCDisassembler
parent = MC
-; FIXME: This is really horrible, MCDisassembler should not in and of its own
-; accord depending on every target.
-required_libraries = all-targets MC MCParser Support
-
+required_libraries = MC MCParser Support