全部
我需要在OSX的lldb中设置一个断点,以便该程序在第二次命中时停止运行。
那么我应该添加以下内容:
break set -f myfile.mm -l 100
尝试调试键盘问题。
TIA!
答案 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.