在 lldb 中设置条件断点
Set conditional breakpoint in lldb
全部,
我需要在 OSX 上的 lldb 中设置一个断点,以便程序在第二次命中时停止。
所以我应该添加以下内容:
break set -f myfile.mm -l 100
正在尝试调试键盘问题。
TIA!
使用 -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.
全部,
我需要在 OSX 上的 lldb 中设置一个断点,以便程序在第二次命中时停止。
所以我应该添加以下内容:
break set -f myfile.mm -l 100
正在尝试调试键盘问题。
TIA!
使用 -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.