You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: llvm/docs/ReleaseNotes.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -415,6 +415,13 @@ Changes to LLDB
415
415
416
416
* LLDB now parses shared libraries in parallel, resulting in an average 2x speedup when attaching (only available on Darwin platforms) and launching (available on all platforms).
417
417
418
+
* It is now possible to implement lldb commands in Python that use lldb's native command-line parser. In particular, that allows per-option/argument completion,
419
+
with all the basic completers automatically supported and auto-generated help.
420
+
The command template file in the lldb/examples/python/cmdtemplate.py has been updated to show how to use this.
421
+
422
+
* Breakpoints on "inlined call sites" are now supported. Previous to this fix, breakpoints on source lines that only contained inlined call sites would be
423
+
moved to the next source line, causing you to miss the inlined executions.
424
+
418
425
* On the command line, LLDB now limits tab completions to your terminal width to avoid wrapping.
0 commit comments