LLDB 扩展文档

问题描述 投票:0回答:1

在哪里可以找到 LLDB 选项的扩展列表?

例如:教程中显示的 --auto-continue 选项不会出现在帮助命令中 (

help br set
): https://lldb.llvm.org/use/tutorial.html

lldb
1个回答
0
投票

--auto-continue
标志是 lldb 最近添加的,所以如果您有较旧的 lldb,则可能没有它。在当前的TOT lldb和最新的Xcode版本中,都有这个选项,例如:

(lldb) version
lldb-1500.0.22.8
Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)
(lldb) help break set
Sets a breakpoint or set of breakpoints in the executable.

Syntax: breakpoint set <cmd-options>

...

       -G <boolean> ( --auto-continue <boolean> )
            The breakpoint will auto-continue after running its commands.
© www.soinside.com 2019 - 2024. All rights reserved.