Get symbol by address (symbolicating binary, iOS build)
Asked Answered
F

1

2

I have snapshot of Allocations Instrument with address of interesting symbol:

Here is screenshot

And I want to know, where this address is in code. I have corresponding dSYM file. I tried to use atosym command-line tool but it gives me wrong symbols (not related to my app).

How to get it?

PS: The binary was built by XCode 4.3.2, code language is C++, armv7 architecture, release build configuration.

Festival answered 8/8, 2012 at 10:42 Comment(0)
F
8

dwarfdump does what I need:

dwarfdump --arch armv7 myApp.dSYM --lookup 0xaabbccdd
Festival answered 9/8, 2012 at 7:3 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.