I have just updated my Xcode to 4.0.1. Now I have a problem with the symbolication of the crash logs received from my tester and even from my phone too.

When I build the AdHoc distribution I am using the "Arhive" scheme, then I create the *.ipa file singing it with my developer credentials.

Is this the issue? And I can't find the dSym files for these AdHoc builds.

link|improve this question

I have found a really nice way to fix this using Crittercism DSK. – Andrei Sep 27 '11 at 10:28
feedback

6 Answers

up vote 21 down vote accepted

Further to coob's answer, I find adding these directories to Spotlight's ignore list (System Preferences → Spotlight → Privacy) helps:

  • ~/Library/Developer/Xcode/DerivedData/ (Xcode 4 build artefacts)
  • ~/Library/Application Support/iPhone Simulator/ (file system for the iPhone Simulator)

Like this:

Spotlight settings to suppress unhelpful .app files

(See this blog post for additional detail.)

Update: from a comment by joerick: "This works, but it also meant that Instruments.app couldn't find the debug symbols, so I had to remove DerivedData from the Privacy list to do some profiling." - bear this in mind if you use Instruments.

link|improve this answer
This is a good idea, till a proper fix is in place. I've filed a bug report with Apple, so we'll see how it develops. – Jonathan Apr 2 '11 at 18:19
it works, thanks – falkon Apr 3 '11 at 15:29
Thanks. It works like a charm:). Regards! – Andrei Apr 3 '11 at 20:10
3  
This works, but it also meant that Instruments.app couldn't find the debug symbols, so I had to remove DerivedData from the Privacy list to do some profiling. – joerick May 2 '11 at 13:14
3  
Rather than messing with Spotlight preferences I deleted all builds of the app in question from the above recommended directories and symbolication worked again for that app. I prefer this than potentially breaking Instruments and any other tools. Cheers! – Chris Miles May 17 '11 at 11:59
show 6 more comments
feedback

For me, neither the line 323 edit nor the Spotlight exclusions fixed it. So I tracked down the issues in symbolicatecrash and published a patched version on github. Just replace /usr/local/bin/symbolicatecrash and your iOS crash reports will start symbolicating again.

This patch may not work for Mac apps, as it makes assumptions about the structure of the .xcarchive directory which don't appear to hold for desktop apps.

Edit: you may still have problems if Spotlight hasn't indexed your archives. You can get force an index by running the following in a terminal:

mdimport ~/Library/Developer/Xcode/Archives/

More info on troubleshooting here.

link|improve this answer
1  
This worked for me while the Spotlight/die changes didn't. Saved a lot of fiddling; Thanks a lot. Do not that you will need to replace symbolicatecrash at the full path if you want it to work in xcode (/Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/DTD‌​eviceKit.framework/Versions/A/Resources/) – peppy May 17 '11 at 5:22
Your custom symbolicatecrash made my day while Spotlight exceptions did nothing. Nevertheless thanks everyone for all the useful answers! – NR4TR Jun 23 '11 at 14:18
4  
Warning: When I tried using this script it symbolicated my .crash file, but the symbols were all wrong. The methods shown in the stack came from entirely different parts of the code that were unrelated and out of context. I was ultimately able to get properly symbolicated output by copying my .app and .dSYM files out of my .xcarchive and placing them along side the crash report. I verified that Spotlight could find these files, then I dragged the crash report into organizer. – cduhn Jun 28 '11 at 0:40
Great job, thanks a lot! Now all my crash reports symbolized even in XCode 4. – Dmitry Shashlov Sep 2 '11 at 11:29
this worked like a charm. thanks a lot! – jeanniey Sep 10 '11 at 8:58
feedback

The symbolication script is having an issue finding the right binary/dSYM. It uses Spotlight to do this and often cocks up. Here's a few things to try:

  1. Make sure your .app doesn't have a space in it.

  2. It may be finding the version of your app installed on the simulator (backwards, but it sometimes does this for me). Reset your simulator.

  3. Clear your build directory.

link|improve this answer
@coob, Thank you for your answer. My app doesn't have any spaces in it's name. I simply can not find the dSym file after it finishes building the archive. If I reveal in Finder the application archive I just find a .xcodearchive file. No dSym or any other files. – Andrei Mar 29 '11 at 13:18
Are you using XCode 3 or 4? I'm not familiar with 4, when I 'Reveal in Finder an archived application' on XCode 3 it shows me a directory like '1DE8BA58-B733-4FA6-88E0-8F9F71297070.apparchive' in '/Users/al/Library/Application Support/Developer/Shared/Archived Applications' which has the app, a plist and the dsym inside. – Alastair Stuart Mar 29 '11 at 15:45
@coob, I am using Xcode 4.0.1. – Andrei Mar 29 '11 at 15:46
XCode 4 puts it in ~/Library/Developer/Archives. Then a directory by date, then an .xcarchive bundle. In finder, control-click to show package contents. dSYM is within dSYMs directory. App is within Products/Applications. All that said, I can't get XCode 4.0.1 to symbolicate a new crash log. – David Mar 29 '11 at 19:54
1  
And what do you do if your app DOES have a space in it? e.g. app is already live on the app store, I have a crash report, but Xcode refuses to symbolicate it. – Adam Jun 2 '11 at 8:58
show 4 more comments
feedback

I had the same issue today. From my research on the web, there is an issue with the armv6 libraries that cause the symbolicate process to fail. I found the answer in the dev forums here.

For those without access, you need to create a copy of the symbolicatecrash script from /Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/DTDeviceKit.framework/Versions/A/Resources/. Edit the file and replace the 'die' on line 323 with a 'print' (this is why it's not working, the script fails here).

Then run symbolicatecrash against your crash log. You'll see the error from line 323, but then it will symbolicate all your lines and variables. It still fails for the system libraries, but it give enough information to fix your own bugs.

Hope this helps.

link|improve this answer
feedback

I think I had this issue, or something similar. Xcode 4.0 wasn't showing the symbols for a crash I had from a tester. I seemed to fix this by opening the xarchive that I had created, and copying out the dsym file from within it (right click and 'view package contents') to sit alongside it in the archive folder. I can't guarantee this was the solution - I was trying a number of other solutions at the time, but I know that I have the symbols now and didn't before. Worth trying?

link|improve this answer
I have had some troubles with XCode 4.0 since it doesn't archive the same way as Xcode 3. It creates an xarchive, I then have to create a .ipa, and -as it was the way I did things in the past- pulled out the .app package from this to send to my tester. I think maybe xcode doesn't find the dsym since it is internal to the xarchive package itself. – Nic Mar 30 '11 at 18:15
feedback

To locate a dSYM file based on it's ID in a crashlog that looks like this :

Binary Images: 0x100000000 - 0x100021ff7 +com.developer.foobar 1.1 (2) <D1B7F956-7D79-3D4D-BA53-E9EBB368A9F8> /Applications/FooBar.app/Contents/MacOS/FooBar

you can do:

mdfind com_apple_xcode_dsym_uuids == D1B7F956-7D79-3D4D-BA53-E9EBB368A9F8

For OSX apps built with "DWARF with dSYM" you do not actually need the dSYM file and can use the manual approach at http://developer.apple.com/tools/xcode/symbolizingcrashdumps.html

link|improve this answer
Apple removed that link ... ARGH!! – Jay Jan 13 at 8:17
feedback

Your Answer

 
or
required, but never shown

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