LLDB Break at Address

前端 未结 2 933
不知归路
不知归路 2021-02-07 10:32

I apologize for the likely trivial question but I am running into a wall as Google gives me the same non-applicable answers over and over.

I am trying to set a breakpoin

2条回答
  •  粉色の甜心
    2021-02-07 11:13

    breakpoint set has an address option; you would type help breakpoint set to see all of them. For your specific example,

    (lldb) br s -a 0x10000
    

    (You can always use shorter versions of command names in lldb that are unambiguous so typing out breakpoint set isn't necessary)

提交回复
热议问题