在LLDB中如何在源代码调试模式和反汇编调试模式之间切换



如何在LLDB中切换源代码调试模式和反汇编调试模式,如"Xcode->调试->调试工作流->始终显示反汇编"菜单功能?

这四个设置控制当您停止时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

只显示组件

最新更新