Symbolicate XCode4 crash reports

后端 未结 1 747
别那么骄傲
别那么骄傲 2020-12-28 10:47

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 instr

相关标签:
1条回答
  • 2020-12-28 11:34

    that tool has been relocated to /Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/DTDeviceKit.framework/Versions/A/Resources/symbolicatecrash in newer version of the SDK

    you would run it as:

    ./symbolicatecrash -A -v [crashlog-filename] MyApp.dSYM

    keep in mind this is for iOS only, for OSX see http://developer.apple.com/tools/xcode/symbolizingcrashdumps.html (for the app to contain the symbols "DWARF with dSYM" must be enabled in it's build settings)

    you would run it as:

    ./symbolizecrashlog [application-name] [crashlog-filename] > symbolized.crash

    I would like to add that all this usually is done automatically, these manual approaches are for cases when there are issues with the system symbols database as discussed in Xcode 4 failure to symbolicate Crash Log

    0 讨论(0)
提交回复
热议问题