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
0
votes
1 answer

Xcode 4 fails to symbolicate debug builds

It is my understanding that Xcode should be able to automatically symbolicate debug builds so that I don't need to "build and archive" to preserve the .dSYM files. Is this correct? What could be the reason if it doesn't work? Everything in the…
Nicolinux
  • 169
  • 3
  • 8
0
votes
2 answers

Symbolicating Crash Report ios

Along with crash report, I've .app and .dSYM package as well. I'm trying to symbolicate the crash report by running the following command /Applications/Xcode.app/Contents/SharedFrameworks/DVTFoundation.framework/Versions/A/Resources/symbolicatecrash…
prabodhprakash
  • 3,825
  • 24
  • 48
0
votes
0 answers

IOS firebase stacktrace are not symbolicated

I have integrated the forebase crash report as per googles documentation and its working as expected except, the stack trace is not symbolicated. In the firebase console, I see the following message Future stack traces for UUID ******** will be…
Shofiqul Alam
  • 585
  • 1
  • 7
  • 29
0
votes
1 answer

Symbolicating crash report

I have all dSYM files, crash file and .app file in the same folder, using this command it symbolicates the crash report: symbolicatecrash myCrash.crash > SymbolicatedM.crash But the first few lines still show hex address: Exception Type: …
Maysam
  • 7,246
  • 13
  • 68
  • 106
0
votes
1 answer

IOS symbolication formula

I have read in various sites that while manually symbolicating an ios Crash report, we can get the symbol address using: symbol address = slide address + stack address - load address But how do we get this? These are the sites which mentions the…
riddler0212
  • 95
  • 1
  • 1
  • 8
0
votes
0 answers

Symbolicate crash log - XCode 7.0.1

I am trying to symbolicate the crashed log & tried variuos methods. 1) symbolicating crash log from xcode(7.0.1) > Devices > All Logs > Re-Symbolicate logs Nothing happens Installed command line tools, xcode-select --install export…
JiteshW
  • 2,195
  • 4
  • 32
  • 61
0
votes
2 answers

Crash at launch - ios 8.1 because adding UIButton's subview. EXC_BREAKPOINT (SIGTRAP)

I have just got rejected by Apple with the following reason: We were unable to review your app, as it crashed on launch on the following device(s): - iPhone 5S running iOS 8.1- iPhone 6 running iOS 8.1- iPhone 6 Plus running iOS 8.1 Here is…
thomasdao
  • 972
  • 12
  • 26
0
votes
1 answer

How to interpret ios prod app error logs (redacted obscures source of error)

When my app crashes in simulator or on adhoc version of my app, the error log is detailed and clear in terms of where the app crashed. However once it is submitted to the app store and my users are using it, I am finding that error logs which are…
shaz
  • 1
  • 1
0
votes
1 answer

Xcode symbolication error

I have a small app made with SpriteKit and i receive EXC_RESOURCE error all the time and i really don't know. I want to see crash log , but Xcode doesn't symbolicate correct. I need to see Thread 0 , but it is the only one who isn't…
Ciprian
  • 31
  • 5
0
votes
0 answers

iOS : Fail to symbolicate crash logs with atos

I tried to symbolicate crash logs sent by Apple for one of my app. I have three files .crash sent by Apple, if I take one of them, I've something like this : Thread 0 Crashed: 0 libsystem_kernel.dylib 0x0000000194bf2964 __kill + 8 1 …
deveLost
  • 1,151
  • 2
  • 20
  • 47
0
votes
0 answers

How to symboilocate a crash report?

Im wondering how to symbolicate a crash report generated from the release build of an iOS application. I have the .crash file that was sent to me by one of the Quality Assurance people. I also found the .dsym file corresponding to the archived…
Esko918
  • 1,397
  • 1
  • 12
  • 25
0
votes
1 answer

xcode 5 not importing .crash file?

I have an OSX app that is constantly crashing on one device. I have setup the project build setting to never strip symbols (debug or release): When I build the app, I copy both it and the .DSYM files to a local folder. I then copy the app to the…
Kyle
  • 17,317
  • 32
  • 140
  • 246
0
votes
0 answers

Crash log partially symbolicated

I have this crash log: Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x80000008 Crashed Thread: 0 Thread 0 name: Dispatch queue: com.apple.main-thread Thread 0 Crashed: 0 libobjc.A.dylib …
aprunedamtz
  • 169
  • 2
  • 10
0
votes
1 answer

iOS stacktrace missing myapp function in release build but shows in debug build

I was having trouble symbolicating some code in distribution build and finally created a simple project which has a button that basically causes a crash by accessing an objectAtIndex in an array that doesn't exist. In release (or distribution)…
Truth
  • 13
  • 5
0
votes
1 answer

Symbol matrix function differentiation

1.The function 'diff' seems could only work with one-element variable 'v' diff(f,v); % f(v), v is a one-lelement variable while I would like do differentiation on a symbol matrix diff(F, V); % F(V), V is a symbol matrix variable 2.If I make…
xychen
  • 31
  • 4
1 2 3
8
9