Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 GDB 下,您可以通过运行以下命令将回溯中的行数限制为例如最上面的 5 帧:
bt 5
在 LLDB 中,同样的命令似乎打印出线程 5的完整回溯。我找不到任何有关 LLDB 单个命令的适当文档 - 是否可以只打印回溯的最后 5 行?
尝试这个:
bt -c 5
我在这里找到了一大堆有趣的 LLDB 信息:http: //lldb.llvm.org/tutorial.html