Skip to content
Apr 26 / Danushka

iOS Crashlog symbolication

We recently had to take a look at some crashlogs that only had offsets in them (Symbolication didn’t happen for whatever reason – it usually does when XCode’s Organiser window downloads the logs of the device)

Quick command line way of finding is using the atos tool. For our app CubeGame, you cd your way inside CubeGame.app (inside the app package, you have your actual binary executable called CubeGame) then fire off this command:

atos -o CubeGame -arch armv7 0x000421ec

0x000421ec is obviously the last code address in the stack trace that is inside your code. this is the output that was produced:

WaveSet::createWaveSet(int, int) (in CubeGame) (WaveSet.cpp:58) 
Leave a Comment