Displaying each assembly instruction executed in gdb

后端 未结 3 900
别跟我提以往
别跟我提以往 2020-12-14 22:04

I currently have a tricky bug that occurs in a place where I don\'t have access to source or symbols, i.e. I can see the instruction and its address where the crash occurs,

3条回答
  •  一生所求
    2020-12-14 22:30

    1. Dissassemble the binary separately (e.g. using objdump) and consult the listing while debugging
    2. Use IDA and its debugger. Much better experience IMO.

    (disclaimer: I work for Hex-Rays)

提交回复
热议问题