[Lldb-commits] [lldb] Add commands to list/enable/disable plugins (PR #134418)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Fri Jun 6 15:27:07 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},
----------------
clayborg wrote:
These functions seems to be missing from PluginManager?
https://github.com/llvm/llvm-project/pull/134418
More information about the lldb-commits
mailing list