vote up 3 vote down star
3

Hey guys,

I'm looking to try and symbolicate my iPhone app's crash reports.

I retrieved the crash reports from iTunes Connect. I have the application binary that I submitted to the App Store and I have the dSYM file that was generated as part of the build.

I have all of these files together inside a single directory that is indexed by spotlight.

What now?

I have tried invoking:

symbolicatecrash crashreport.crash myApp.app.dSYM

and it just outputs the same text that is in the crash report to start with, not symbolicated.

Am I doing something wrong?

Any help would be greatly appreciated, thanks.

flag

2 Answers

vote up 4 vote down

I also put dsym, app bundle, and crash log together in the same directory before running symbolicate crash

Then I use this function defined in my .profile to simplify running symbolicatecrash:

function desym
{
    /Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/DTDeviceKit.framework/Versions/A/Resources/symbolicatecrash -A -v $1 | more
}

The arguments added there may help you.

You can check to make sure spotlight "sees" your dysm files by running the command:

mdfind 'com_apple_xcode_dsym_uuids = *'

Look for the dsym you have in your directory.

link|flag
I looked at the mdfind output, and the dSYM file can definitely be seen by spotlight. However, the symbolicatecrash script still doesn't output anything different from the crash report itself. Even using the arguments you provided. – Jasarien Sep 23 at 8:47
The script should produce some warning text at the beginning if it cannot find the dsym - can you look for that and see what it says? – Kendall Helmstetter Gelner Sep 23 at 16:09
Also, try adding "." after the command, so it would be "symbolicatecrash -A -v MyApp.crashlog ." . That forces it to look in the current directory if it's not doing so already. – Kendall Helmstetter Gelner Sep 23 at 16:11
vote up 0 vote down

In order to symbolicate crashes, Spotlight must be able to find the .dSYM file that was generated at the same time the binary you submitted to Apple was. Since it contains the symbol information, you will be out of luck if it isn't available.

link|flag
If you read the question, I stated that I have saved the original dSYM file that was generated at the same time the binary was submitted. – Jasarien Sep 23 at 7:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.