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
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 …
A customer sent me a crash log from an iOS 5.0.1 (9A405) device. I'm running Xcode 4.2 on Snow Leopard. The system parts of the crash log call stack fail to symbolicate, and it seems that they're relevant to the crash; there are no iOS 5.0.1 symbols…
We have got the dsyms file and the crashlog from the archive file which is used to generate the IPA in xcode.
I have used the following command in terminal to fetch the filename and crash location in the project.
atos -arch armv7k -o …
I was analysing a crash and I noticed I have a lot of .dSYM files in my dSYM folder inside archive package,
below is the image of dSYM folder from my archive showing all the contents inside it.
Also
I noticed there is only 1 file with the name of…
Excuse me! There's a problem confuse me!
I have the Myapp.app.dSYM. (All Symbols has stripped from the MyApp.app and copy to dSYM)
Now I use symbolicatecrash tool to symbolicate Crashes, it's not working! Hex address is still there.
Part of my…
I would like to symbolicate my [NSThread callStackSymbols] to my method names. My main problem is, that i don't know how to calculate the memory address from the log i got here.
0 MY_APPLICATION 0x000f1ca3 MY_APPLICATION +…
Is it possible to symbolicate MonoTouch crash dumps and get line numbers out of them? If so, how is it done?
I have configured my project in the following way:
Build in release mode
Checked 'Enable debugging' in Project Options -> Build -> iPhone…
I used Thread.callStackSymbol to get stack trace but it's not readable.
I saw several StackOverflow answers but none of them is working. Following is the process I followed to make stack trace readable
Sample stack trace :
[
0: "projectName", "hex…
I am using the Electron symbols file to symbolicate my stack trace, and everything is working fine. Except these symbols don't work on my application code. How can I generate a symbols file for my actual application code? I am using Electron…
I am attempting to symbolicate crash logs that I have automatically sent to a server. My app's crash logs and dSYM files are sent to the server upon my app crashing. The issue I am having is symbolicating them. I would like to do this…
I've uploaded my IPA and .dSYM file on test flight. .dSYM file uploaded and attached successfully. My client tested the app and it crashed. Crash report is shown in TestFlight Crash Section. But the problem is that, TestFlight is not symbolicating…
I'm using BugSense to track crashes from an iOS App. Recently I noticed problems symbolicating stack traces from live usage.
The problem is that Apple introduced address space randomization with iOS 4.3 so that the stack address of interest cannot…
I got an app crash report from a client with a iOS 4.3.2 device.
I don't have a device with that version so I downloaded the .ipsw and thought putting it in the xcode Organizer software images section will allow me to symbolicate the iOS logs but it…
I am completely at a loss on this one. I was able to symbolicate one of my crash reports (obtained from a user submitting it via the app) and it looked like this:
Thread 0 Crashed:
0 libobjc.A.dylib 0x360a3fbc objc_msgSend +…
I submitted an iOS app which failed review due to a crash. I was given the crash report which unfortunately for me, was useless because I didn't keep the dSYM files and .app file that I apparently needed to decipher the crash report.
First question…