LLDB快速参考?

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

我熟悉GDB的单页和双页快速参考“卡片”,并发现它们非常有用。

现在我们的项目正在使用LLDB,我想找到该工具的等效工具,但我很幸运能够像我预期的那样快速找到它。

有人存在吗?

debugging lldb
2个回答
2
投票

也许是LLDB to GDB Command Map?如果你想要它在参考卡样式布局中,它需要重新格式化,但它已经写成一个。


0
投票

我刚开始学习lldb。至今:

    $lldb a.out [args]  
    (lldb)r    -->run  
    (lldb)b 22 -->breakpoint at linenumber 22 )  
    (lldb)l    -->list your code  
    (lldb)n    -->next step  
    (lldb)s    -->step  
© www.soinside.com 2019 - 2024. All rights reserved.