[llvm] [lldb] Add statusline to the release notes (PR #133281)
Jonas Devlieghere via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 28 09:05:39 PDT 2025
https://github.com/JDevlieghere updated https://github.com/llvm/llvm-project/pull/133281
>From 2be56328798c736e96630b0bb738f4c583f3c627 Mon Sep 17 00:00:00 2001
From: Jonas Devlieghere <jonas at devlieghere.com>
Date: Thu, 27 Mar 2025 10:21:17 -0700
Subject: [PATCH 1/3] [lldb] Add statusline to the release notes
Add a release note for the statusline: #121860
---
llvm/docs/ReleaseNotes.md | 3 +++
1 file changed, 3 insertions(+)
diff --git a/llvm/docs/ReleaseNotes.md b/llvm/docs/ReleaseNotes.md
index bb75aec44ef8e..b35c42a55443e 100644
--- a/llvm/docs/ReleaseNotes.md
+++ b/llvm/docs/ReleaseNotes.md
@@ -214,6 +214,9 @@ Changes to LLDB
Windows 11 on the Microsoft SQ2 and Snapdragon Elite X platforms.
* LLDB now steps through C++ thunks. This fixes an issue where previously, it
wouldn't step into multiple inheritance virtual functions.
+* A statusline was added to command-line LLDB to show progress events and
+ information about the current state of the debugger at the bottom of the
+ screen.
### Changes to lldb-dap
>From e7e4023b6b12d8df02663498bc8ba08e63d61f80 Mon Sep 17 00:00:00 2001
From: Jonas Devlieghere <jonas at devlieghere.com>
Date: Thu, 27 Mar 2025 10:23:23 -0700
Subject: [PATCH 2/3] Screen -> Terminal
---
llvm/docs/ReleaseNotes.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/llvm/docs/ReleaseNotes.md b/llvm/docs/ReleaseNotes.md
index b35c42a55443e..3abab8deae0a0 100644
--- a/llvm/docs/ReleaseNotes.md
+++ b/llvm/docs/ReleaseNotes.md
@@ -216,7 +216,7 @@ Changes to LLDB
wouldn't step into multiple inheritance virtual functions.
* A statusline was added to command-line LLDB to show progress events and
information about the current state of the debugger at the bottom of the
- screen.
+ terminal.
### Changes to lldb-dap
>From 39c00a7d10fb4655b212797dfb3ed14178f6d5d7 Mon Sep 17 00:00:00 2001
From: Jonas Devlieghere <jonas at devlieghere.com>
Date: Fri, 28 Mar 2025 09:05:19 -0700
Subject: [PATCH 3/3] Add the settings
---
llvm/docs/ReleaseNotes.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/llvm/docs/ReleaseNotes.md b/llvm/docs/ReleaseNotes.md
index 3abab8deae0a0..a42f47cb17fb8 100644
--- a/llvm/docs/ReleaseNotes.md
+++ b/llvm/docs/ReleaseNotes.md
@@ -216,7 +216,8 @@ Changes to LLDB
wouldn't step into multiple inheritance virtual functions.
* A statusline was added to command-line LLDB to show progress events and
information about the current state of the debugger at the bottom of the
- terminal.
+ terminal. This is on by default and can be configured using the
+ `show-statusline` and `statusline-format` settings.
### Changes to lldb-dap
More information about the llvm-commits
mailing list