[Lldb-commits] [lldb] Add commands to list/enable/disable plugins (PR #134418)

David Peixotto via lldb-commits lldb-commits at lists.llvm.org
Fri Jun 6 15:49:01 PDT 2025


================
@@ -181,6 +181,56 @@ void PluginManager::Terminate() {
   plugin_map.clear();
 }
 
+llvm::ArrayRef<PluginNamespace> PluginManager::GetPluginNamespaces() {
+  // Currently supported set of plugin namespaces. This will be expanded
+  // over time.
+  static PluginNamespace PluginNamespaces[] = {
+      {"system-runtime", PluginManager::GetSystemRuntimePluginInfo,
+       PluginManager::SetSystemRuntimePluginEnabled},
----------------
dmpots wrote:

They were already added in #133794 so are not showing up as diffs in this PR.

https://github.com/llvm/llvm-project/pull/134418


More information about the lldb-commits mailing list