I've been recently been playing around with LLDB's gui feature. (A stackoverflow link about this feature is described here. My current lldb is lldb-320.4.156
)
So far, it seems very convenient, especially the ability to view local variables in the current stack frame. But is there any documentation (or tutorial) on how to use the LLDB's GUI mode?
Aside: I specifically have a few questions:
- How to show the source code upon going into GUI mode. (Unless I stop at a breakpoint and type
gui
within LLDB, I can never get source code to show up.) - How to rerun a program while in GUI mode. (There is nowhere to type while in GUI mode.)
- Are there colors in GUI mode? I notice if you type
lldb --help
in the command line,lldb
tells you you could invoke it with a--no-use-colors
option. (That being said, I've never seen colors with normallldb
mode...) - Is there a way to set breakpoints, prior to running
lldb
?