符号化 XCode4 崩溃报告
我正在尝试让 XCode 4 来表示崩溃报告。我用谷歌搜索并点击了这个链接(https://github.com/chrispix/symbolicatecrash-fix),但被阻止了。说明显示“要修复您的 iOS 崩溃报告符号,请将 /usr/local/bin/symbolicatecrash 移到一边并复制此存储库中的版本。”好吧,我在 Mac 上找不到“/usr/local/bin/”。我是 Mac 世界的新手,所以我确信有些东西我不理解。如果“/usr/local/bin/”不存在,那么XCode 4在哪里找到symbolicatecrash?请为新手指出正确的方向,因为我有很多错误需要修复。
谢谢 汤姆
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 /usr/local/bin/symbolicatecrash aside and copy in the version in this repo." Well, I cannot find "/usr/local/bin/" on my Mac. I'm new to the Mac world, so I'm sure there's something I'm not understanding. If "/usr/local/bin/" doesn't exist, then where is XCode 4 finding symbolicatecrash? Please point a newbie in the right direction as I have a lot of bugs to be fixing.
Thanks
Tom
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该工具已被重新定位到 /Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/DTDeviceKit.framework/Versions/A/Resources/symbolicatecrash 在较新版本的 SDK 中,
您可以将其运行为:
请记住,这仅适用于 iOS,对于 OSX,请参阅
rel="nofollow noreferrer">http://developer.apple.com/tools/xcode/symbolizingcrashdumps.html(对于包含符号“DWARF with dSYM”的应用 将其运行为:
我想补充一点,所有这些通常都是自动完成的,这些手动方法适用于系统符号数据库出现问题的情况,如 Xcode 4 无法符号化崩溃日志
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:
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:
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