[Lldb-commits] [lldb] Add commands to list/enable/disable plugins (PR #134418)
David Peixotto via lldb-commits
lldb-commits at lists.llvm.org
Fri Apr 25 11:01:17 PDT 2025
================
@@ -174,12 +174,21 @@ struct StatisticsOptions {
return !GetSummaryOnly();
}
+ void SetIncludePlugins(bool value) { m_include_plugins = value; }
+ bool GetIncludePlugins() const {
+ if (m_include_plugins.has_value())
+ return m_include_plugins.value();
+ // Default to true in both default mode and summary mode.
----------------
dmpots wrote:
Should we include plugin info in the stats by default?
https://github.com/llvm/llvm-project/pull/134418
More information about the lldb-commits
mailing list