美文网首页
LLVM常用命令

LLVM常用命令

作者: 蓝天白云_Sam | 来源:发表于2019-03-26 10:25 被阅读0次

    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常用命令

          本文链接:https://www.haomeiwen.com/subject/iipukqtx.html