I have the app, dSym file and the crash report and I need to get the proper stack of crash. App is built on a separate build machine and hence build is not present in the archive section. I am totally frustrated as I have searching for past 1-2 hr and did the following.
- Copied all app, dSym and crash log and make sure it is indexable by spotlight and then added crash log to xcode (4.3.x) organizer. Did not work.
- Used "symbolicatecrash -A -v crash dSym". Did not work.
- Used "atos -arch armv7 -o App/App 0x123456". Did not work.
Is there any other way to get the proper stack out of crash?
dwarfdump --uuid App.app.dSYM. As a note,atoswants the dwarf binary in the dSYM as a parameter, and not the app executable. – Kerni Sep 11 '12 at 3:40