[Lldb-commits] [PATCH] D142663: Improve disable-language-runtime-unwindplans description to be more searchable

Jason Molenda via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Thu Jan 26 13:33:50 PST 2023


jasonmolenda created this revision.
jasonmolenda added a reviewer: kastiglione.
jasonmolenda added a project: LLDB.
Herald added a subscriber: JDevlieghere.
Herald added a project: All.
jasonmolenda requested review of this revision.
Herald added a subscriber: lldb-commits.

The current description for "disable-language-runtime-unwindplans" can only be found with `apropos` by searching for `backtracing`.  It should be discoverable with terms like `stack` and `backtrace`.  I'm also not thrilled with my mention of "LanguageRuntime" here, because no one outside lldb developers would know what that means.  Maybe this is a little better.  Open to suggestions.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D142663

Files:
  lldb/source/Target/TargetProperties.td


Index: lldb/source/Target/TargetProperties.td
===================================================================
--- lldb/source/Target/TargetProperties.td
+++ lldb/source/Target/TargetProperties.td
@@ -216,7 +216,7 @@
   def DisableLangRuntimeUnwindPlans: Property<"disable-language-runtime-unwindplans", "Boolean">,
     Global,
     DefaultFalse,
-    Desc<"If true, LanguageRuntime plugins' UnwindPlans will not be used when backtracing.">;
+    Desc<"If true, language runtime augmented/overidden backtraces will not be used when printing a stack trace.">;
   def DetachKeepsStopped: Property<"detach-keeps-stopped", "Boolean">,
     Global,
     DefaultFalse,


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D142663.492554.patch
Type: text/x-patch
Size: 667 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20230126/57e0acd1/attachment.bin>


More information about the lldb-commits mailing list