如何在LLDB中切换源代码调试模式和反汇编调试模式,比如"Xcode-> debug ->Debug Workflow->Always show disassembly“菜单功能?
发布于 2015-10-27 03:33:18
这四个设置控制当您停止时lldb如何显示源/程序集:
stop-disassembly-count -- The number of disassembly lines to show when displaying a stopped context.
stop-disassembly-display -- Control when to display disassembly when displaying a stopped context.
stop-line-count-after -- The number of sources lines to display that come after the current source line when displaying a stopped context.
stop-line-count-before -- The number of sources lines to display that come before the current source line when displaying a stopped context.因此,例如,在LLDB提示符下:
set set stop-disassembly-display always
set set stop-line-count-before 0
set set stop-line-count-after 0将仅显示程序集。
https://stackoverflow.com/questions/33333165
复制相似问题