diff options
author | Michal Gorny <mgorny@gentoo.org> | 2019-10-04 12:03:03 +0000 |
---|---|---|
committer | Michal Gorny <mgorny@gentoo.org> | 2019-10-04 12:03:03 +0000 |
commit | 9735739be7014564ff61d25b682af77b5cee2290 (patch) | |
tree | 1719395977358326b4716d4cc9a2b423b730f5dd /lldb/source/Plugins/LanguageRuntime/RenderScript | |
parent | 576ea7d1a948b670e5e2730875bdf7382f566924 (diff) | |
download | bcm5719-llvm-9735739be7014564ff61d25b682af77b5cee2290.tar.gz bcm5719-llvm-9735739be7014564ff61d25b682af77b5cee2290.zip |
[lldb] [cmake] Support linking against clang-cpp dylib
Link against clang-cpp dylib rather than split libs when
CLANG_LINK_CLANG_DYLIB is enabled.
Differential Revision: https://reviews.llvm.org/D68456
llvm-svn: 373734
Diffstat (limited to 'lldb/source/Plugins/LanguageRuntime/RenderScript')
-rw-r--r-- | lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/CMakeLists.txt b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/CMakeLists.txt index 1a6c4994613..c122e09e8fe 100644 --- a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/CMakeLists.txt +++ b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/CMakeLists.txt @@ -13,7 +13,6 @@ add_lldb_library(lldbPluginRenderScriptRuntime PLUGIN ${tablegen_deps} LINK_LIBS - clangBasic lldbBreakpoint lldbCore lldbDataFormatters @@ -22,6 +21,8 @@ add_lldb_library(lldbPluginRenderScriptRuntime PLUGIN lldbInterpreter lldbSymbol lldbTarget + CLANG_LIBS + clangBasic LINK_COMPONENTS Core IRReader |