在lldb中设置条件断点

时间:2019-08-11 04:21:44

标签: conditional-statements breakpoints lldb

全部

我需要在OSX的lldb中设置一个断点,以便该程序在第二次命中时停止运行。

那么我应该添加以下内容:

break set -f myfile.mm -l 100

尝试调试键盘问题。

TIA!

1 个答案:

答案 0 :(得分:3)

使用-i / --ignore-count标志。在您的示例中,您的命令将是:

break set -f myfile.mm -l 100 -i 1

这将跳过断点1的时间,并第二次(以及之后的每次)停止。

对于价值而言,文档(来自help breakpoint set)说:

-i <count> ( --ignore-count <count> )
    Set the number of times this breakpoint is skipped before stopping.