diff options
author | Alex Langford <apl@fb.com> | 2019-07-12 20:09:32 +0000 |
---|---|---|
committer | Alex Langford <apl@fb.com> | 2019-07-12 20:09:32 +0000 |
commit | e0678ca5473de77697623b7228ca478d70000d9e (patch) | |
tree | a40d10006f6ff0c84fc5e809c9382b1c99dae1e6 /lldb/source/Plugins/Language/CPlusPlus | |
parent | 69de1bbe322e3136e36999febac00638f93860f8 (diff) | |
download | bcm5719-llvm-e0678ca5473de77697623b7228ca478d70000d9e.tar.gz bcm5719-llvm-e0678ca5473de77697623b7228ca478d70000d9e.zip |
[LanguageRuntime] Move CPPLanguageRuntime into a plugin
Summary: This seems better suited to be in a plugin.
Reviewers: JDevlieghere, clayborg, jingham, compnerd, labath
Subscribers: mgorny, lldb-commits
Differential Revision: https://reviews.llvm.org/D64599
llvm-svn: 365951
Diffstat (limited to 'lldb/source/Plugins/Language/CPlusPlus')
-rw-r--r-- | lldb/source/Plugins/Language/CPlusPlus/CMakeLists.txt | 1 | ||||
-rw-r--r-- | lldb/source/Plugins/Language/CPlusPlus/LibCxx.cpp | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Language/CPlusPlus/CMakeLists.txt b/lldb/source/Plugins/Language/CPlusPlus/CMakeLists.txt index bc357aa52b8..ea36c7ec80d 100644 --- a/lldb/source/Plugins/Language/CPlusPlus/CMakeLists.txt +++ b/lldb/source/Plugins/Language/CPlusPlus/CMakeLists.txt @@ -28,6 +28,7 @@ add_lldb_library(lldbPluginCPlusPlusLanguage PLUGIN lldbTarget lldbUtility lldbPluginClangCommon + lldbPluginCPPRuntime LINK_COMPONENTS Support diff --git a/lldb/source/Plugins/Language/CPlusPlus/LibCxx.cpp b/lldb/source/Plugins/Language/CPlusPlus/LibCxx.cpp index 7dc765c4791..abe89035c53 100644 --- a/lldb/source/Plugins/Language/CPlusPlus/LibCxx.cpp +++ b/lldb/source/Plugins/Language/CPlusPlus/LibCxx.cpp @@ -18,7 +18,6 @@ #include "lldb/DataFormatters/TypeSummary.h" #include "lldb/DataFormatters/VectorIterator.h" #include "lldb/Symbol/ClangASTContext.h" -#include "lldb/Target/CPPLanguageRuntime.h" #include "lldb/Target/ProcessStructReader.h" #include "lldb/Target/SectionLoadList.h" #include "lldb/Target/Target.h" @@ -27,6 +26,8 @@ #include "lldb/Utility/Status.h" #include "lldb/Utility/Stream.h" +#include "Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.h" + using namespace lldb; using namespace lldb_private; using namespace lldb_private::formatters; |