Disassembler in Xcode?

I am working on a project, and on a machine without Xcode, I get a crash. (of course it works on my B- / machine) I have a crash log, with PC compression for the crash. I would like to see where this is actually located in the code. I know that Code Warrior can parse the code (presumably only debugged code) and show it with interspersed C code, then I just need to look for this address, and I'm done.

Is there an easy way to do this in Xcode?

thank.

+3
source share
1 answer

Xcode , . Build- > Show Assembly Code. , , .

. Run- > Debugger Display- > Source and Disassembly, , . , .

Xcode , , otool .

.

+4

Source: https://habr.com/ru/post/1744379/


All Articles