Questions tagged [symbolicatecrash]

Use this tag for questions related to symbolicating a crash report/log. Symbolication replaces memory addresses with human-readable function names and line numbers.

Quoting the Developer.Apple page:

Symbolication - resolving backtrace addresses to source code methods and lines.

Usually, is found in questions that are tagged with , and/or , so if you are using this tag, please think about whether you need these tags too.

212 questions
7
votes
3 answers

Xcode 5.0 Doesn't Symbolicate Crash Log

I have a submitted iOS app and I have the build archive with me. So, I took the crashes from iTunesConnect but when I tried to symbolicate them (dragged the .crash files to Xcode Organizer they didn't get symbolicated. I also pressed the Symbolicate…
dzep
  • 685
  • 1
  • 8
  • 20
7
votes
2 answers

How to manually symbolicate a crash log with atos

After searching all over the internet to find a way to symbolicate my crash logs I received from Apple, I finally figured out how to use the atos command in terminal to symbolicate the crash logs. I have the dSYM file, the .app file and the crash…
Fitzy
  • 1,871
  • 6
  • 23
  • 40
7
votes
1 answer

symbolicatecrash fails to find .dSYM

Hi when I run symbolicatecrash script with .dSYM file and crash file, it fails to symbolicate the crash file. Here is what i get; S Version 5.1 Build 11E53 12 binary images remain after pruning: Foundation, libsystem_notify.dylib, GraphicsServices,…
ilker Acar
  • 401
  • 1
  • 5
  • 11
6
votes
3 answers

what the structure of dsym file?

What's structure of a dsym file generated when build the app. I know it contain DWARF debug info, but what's a dsym file. I want to read the DWARF info in it. Is it just a Mach-O binary file that contain only debug sections? How do I pass it to a…
leavez
  • 2,119
  • 2
  • 27
  • 36
6
votes
4 answers

symbolicatecrash is unable to find any symbols

I'm running XCode 4.5.2 and am having problems getting symbolicatecrash to work. Note that this is for an app and dsym that were NOT generated on my system, and aren't in an archive. So far I've: export DEVELOPER_DIR=/Applications/Xcode.app sudo…
CasaDelGato
  • 1,263
  • 1
  • 12
  • 29
6
votes
3 answers

Is it possible to symbolicate C++ code?

I have been running into trouble recently trying to symbolicate a crash log of an iOS app. For some reason the UUID of the dSYM was not indexed in Spotlight. After some manual search and a healthy dose of command line incantations, I managed to…
Victor Jalencas
  • 1,216
  • 11
  • 23
5
votes
5 answers

Force symbolicatecrash to use a specific .app and .dSYM file?

I have a .crash log from an ad-hoc version of my app that symbolicatecrash refuses to symbolicate. I have already applied the .patch to remove the 'die' command in symbolicatecrash after apple broke the script in XCode 3.2.6. Symbolicatecrash has…
esilver
  • 27,713
  • 23
  • 122
  • 168
5
votes
1 answer

Symbolicate XCode4 crash reports

I'm trying to get XCode 4 to symbolicate a crash report. I've googled and followed this link (https://github.com/chrispix/symbolicatecrash-fix) but get stopped. The instructions say "To fix your iOS crash report symbolication, move…
Tom Schreck
  • 5,177
  • 12
  • 68
  • 122
5
votes
0 answers

IOS: How to Symbolicate the custom framework

I have an App which has a custom framework. When my app crashes, I could symbolicate the crash log in which I can only symbolicate the symbols in my app. But I want to symbolicate the framework as well. And I cannot create or find where the dsym…
Vinoth ios
  • 255
  • 1
  • 3
  • 12
5
votes
1 answer

Execute symbolicatecrash from shell script

I am trying to call symboliccrash from a shell script that loops through multiple crash log file and outputs symbolicated version, but it is failing with an error message saying "command not found" But it works fine in the command line.…
asif_al
  • 53
  • 1
  • 5
5
votes
2 answers

How to symbolicate crash logs using the .xcarchive file?

I am having issues extracting the dsym file from .xcarchive to symbolicate crash logs. I understand that .xcarchive contains both the .app files and .dsym files. Normally you should be able to right click on the xcarchive file and selecct "Show…
KrispyDonuts
  • 1,262
  • 2
  • 18
  • 37
5
votes
0 answers

Not getting proper crash information using Flurry

I have integrated Flurry 4.3 SDK in my app, also uploaded the correct Desym file. I not getting the object and method call info for crashes in some cases, but i am getting them in other cases. This is what i am getting in some cases. 17 MyApp …
Ashwani
  • 378
  • 1
  • 3
  • 13
5
votes
3 answers

crash log does not symbolicate system libraries armv7s

I am trying to analyse a crash log that a customer sent me, but I cannot get it to symbolicate the system library calls. It does symbolicate calls to my own methods correctly. That does not make it very practical to analyse what goes wrong. I have…
fishinear
  • 6,101
  • 3
  • 36
  • 84
5
votes
0 answers

symbolicatecrash doesn't work because mdfind finds nothing

Running Xcode 4.5.2 on OSX Mountain Lion (10.8.2) I'm trying to symbolicate crash reports but the symbolicatecrash script always fails. I'm not actually interested in the app symbols. I want the system library symbols, but it can't even find…
Karl
  • 14,434
  • 9
  • 44
  • 61
5
votes
1 answer

xcode 4.5 crash log symbolicates except for app lines

How to I get to symbolicate everything? Here is an example so what I am talking about: Thread 0 name: Dispatch queue: com.apple.main-thread Thread 0 Crashed: 0 CoreFoundation 0x351642cc CFRelease + 32 1 CoreFoundation …
jlee
  • 492
  • 5
  • 15
1 2
3
14 15