diff options
author | Chris Bieneman <beanz@apple.com> | 2017-02-10 18:39:26 +0000 |
---|---|---|
committer | Chris Bieneman <beanz@apple.com> | 2017-02-10 18:39:26 +0000 |
commit | 8c31ea917a443b0b122ed46220ae23ffda40a20d (patch) | |
tree | 20682245efdd163b9096f35cd1631736d64438cb /lldb/source/Plugins/Disassembler | |
parent | ba170c2ad808dbb00f3abae7e72d0f2ccb34f978 (diff) | |
download | bcm5719-llvm-8c31ea917a443b0b122ed46220ae23ffda40a20d.tar.gz bcm5719-llvm-8c31ea917a443b0b122ed46220ae23ffda40a20d.zip |
Fix another build issue with shared libraries on Linux
In r294767, I added these dependencies in the wrong place.
llvm-svn: 294768
Diffstat (limited to 'lldb/source/Plugins/Disassembler')
-rw-r--r-- | lldb/source/Plugins/Disassembler/llvm/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Disassembler/llvm/CMakeLists.txt b/lldb/source/Plugins/Disassembler/llvm/CMakeLists.txt index 0ae77446462..a25a436d498 100644 --- a/lldb/source/Plugins/Disassembler/llvm/CMakeLists.txt +++ b/lldb/source/Plugins/Disassembler/llvm/CMakeLists.txt @@ -8,5 +8,7 @@ add_lldb_library(lldbPluginDisassemblerLLVM PLUGIN LINK_COMPONENTS ${LLVM_TARGETS_TO_BUILD} MC + MCDisassembler + RuntimeDyld Support ) |