[Lldb-commits] [lldb] [lldb] Implement a statusline in LLDB (PR #121860)
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Thu Mar 27 08:23:02 PDT 2025
DavidSpickett wrote:
@JDevlieghere if I start lldb with no arguments:
```
david.spickett at tcwg-jade-03-dev:~/build-llvm-aarch64$ ./bin/lldb
<< cursor is here at the start of the line, but no (lldb) was printed
< the status bar>
```
Does not happen if I have a program file, but this is also strange:
```
$ ./bin/lldb /tmp/test.o
(lldb) target create "/tmp/test.o"
Current executable set to '/tmp/test.o' (aarch64).
(lldb) << the cursor is actually at the *start* of this line, instead of after the (lldb)
test.o << status bar
```
Typing overwrites the (lldb):
```
$ ./bin/lldb /tmp/test.o
(lldb) target create "/tmp/test.o"
Current executable set to '/tmp/test.o' (aarch64).
ddddb)
test.o << status bar
```
AArch64 Ubuntu Linux, in case it matters.
https://github.com/llvm/llvm-project/pull/121860
More information about the lldb-commits
mailing list