LLVM常用命令

The LLDB Debugger

  • run or r: Launch a process

  • step or s: Do a source level single step in the currently selected thread.

  • next or n: Do a source level single step over in the currently selected thread.

  • si :Do an instruction level single step in the currently selected thread

  • ni Do an instruction level single step over in the currently selected thread.

  • finish: Step out of the currently selected frame.

  • continue or c: 继续运行

  • thread until 12: Run until we hit line 12 or control leaves the current function.

你可能感兴趣的:(LLVM常用命令)