1

I'm looking for a tool like CGDB for LLDB.

Make debugging in the terminal easier.

Thanks.

zhuxiaoxi
  • 143
  • 8

1 Answers1

1

lldb has a curses based gui that you can switch to with the gui command in lldb. It isn't complete yet, and in particular doesn't have a command-line window. So you can step, view threads, frames, locals and source, but you have to switch out of GUI mode to type commands.

Jim Ingham
  • 25,260
  • 2
  • 55
  • 63