Questions tagged [symbolicate]

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

References

124 questions
8
votes
0 answers

How to symbolicate a kernel panic report on OSX?

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…
ZestyZest
  • 911
  • 13
  • 27
8
votes
4 answers

OS X Crash Log Symbolication

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…
Mark Bernstein
  • 2,090
  • 18
  • 23
8
votes
4 answers

Cannot fully symbolicate iOS crash log

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…
mwoods
  • 255
  • 2
  • 11
5
votes
2 answers

Symbolicate crash file with dSYM and .ipa file

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…
Dhara Patel
  • 138
  • 1
  • 1
  • 7
5
votes
1 answer

dSYM files for release builds

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…
341008
  • 9,862
  • 11
  • 52
  • 84
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

Is there a way to Symbolicate Xcode Energy Reports?

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…
Patrick
  • 2,035
  • 17
  • 27
5
votes
1 answer

iTunesConnect crashlog is partially symbolicated; does not show line numbers

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…
Goffredo
  • 541
  • 4
  • 14
5
votes
1 answer

Symbolicating addresses programmatically

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,…
Léo Natan
  • 56,823
  • 9
  • 150
  • 195
5
votes
2 answers

iOS - Symbolicate Stack trace symbols

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 …
Mani Kandan
  • 629
  • 4
  • 12
5
votes
0 answers

iOS display backtrace with method names also in released product

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…
Deboroh88
  • 391
  • 1
  • 6
  • 20
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
2 answers

“Strip Debug Symbols During Copy” and “Strip Linked Product” difference on xCode

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…
Dmitry
  • 14,306
  • 23
  • 105
  • 189
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
4 answers

XCode 4.6 organizer does not symbolicate my app crash stack trace

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…
abix
  • 287
  • 3
  • 14
1
2
3
8 9