Use symbolicate for questions related to debugging a compiled program which has crashed by annotating stack traces with function names, file paths, and line numbers
I want to know how can I symbolicate a kernel panic report (not a regular app crash report). I have an OSX app that a user claims caused a kernel panic. It doesn't install any kernel extension but a launch daemon. I have followed this link…
I cannot symbolicate OS X (not iOS) crash logs from testers and users using XCode 4.6 . The crash logs cannot be dragged into the organizer, and the organizer does not show any crash logs from ~/Library/Logs/DiagnosticReports/, though some logs are…
I've probably read upwards of 20 articles and forum posts on this subject and I still can't get it working.
My app seems to symbolicate just fine but I can't symbolicate system calls, which is where the majority of crash logs I receive seem to be…
Is there any concreate way to symbolicate crash logs from my app, i have following things
dSYM file
.ipa Application file
myapp.crash
-
I have tried symbolicatecrash script but it does not work somehow
Xcode does not work also i have Xcode 4.3
I…
Do .dSYM resources contain any other information except DWARF information? I have created a release build of an app. Now if I run dwarfdump on it, it says the executable has no DWARF info (says it's "empty"), which is what I would expect. But if I…
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…
Apple released a 2018 WWDC video titled What's New in Energy Debugging where they go into using a new future of Xcode: Energy Reports.
In the video they show an already symbolicated energy report.
When I attempt to right click and select…
The crashlog on iTunesConnect for my XCode 3.2.5-built application shows method names, but not line numbers. For example, in the abridged crash report I've pasted in below, it shows this:
0x000f5ef8 -[MyTableViewController dealloc] + 120
There are…
I am looking for a way to symbolicate external app symbols (iOS) inside my own application (macOS), assuming I have the DSYM and system symbols.
Xcode symbolicates both app addresses as well as system framework addresses (UIKit, Foundation,…
I want to symbolicate the stack trace symbols logged using [NSThread callStackSymbols] to identify the full stack backtrace calls. But, this doesn't give symbolicated trace.
0 TestApp 0x0029616f TestApp + 1823087
…
I wanted to have a backtrace with the classes and method names displayed every time the app crashes. I managed to do it in debug mode, using this code (the printTrace function just prints the string on a file.):
void HandleException(NSException…
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…
What is a difference between “Strip Debug Symbols During Copy” and “Strip Linked Product” options?
What does it mean if “Strip Debug Symbols During Copy” = YES and “Strip Linked Product” = NO?
Is it possible to upload an application to the App…
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…
It has been a while since I used symbolicate in XCode and it used to work. Today when I tried this...
Archive my app.
Install the app on my device from XCode. (Just connect the device and run the app in release mode).
Stopped the app from…