符号化 XCode4 崩溃报告

发布于 2024-11-13 22:15:42 字数 327 浏览 2 评论 0原文

我正在尝试让 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

盛夏尉蓝 2024-11-20 22:15:42

该工具已被重新定位到 /Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/DTDeviceKit.framework/Versions/A/Resources/symbolicatecrash 在较新版本的 SDK 中,

您可以将其运行为:

./symbolicatecrash -A -v [崩溃日志文件名] MyApp.dSYM

请记住,这仅适用于 iOS,对于 OSX,请参阅

rel="nofollow noreferrer">http://developer.apple.com/tools/xcode/symbolizingcrashdumps.html(对于包含符号“DWARF with dSYM”的应用 将其运行为:

./symbolizecrashlog [应用程序名称] [崩溃日志文件名] >符号化.崩溃

我想补充一点,所有这些通常都是自动完成的,这些手动方法适用于系统符号数据库出现问题的情况,如 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:

./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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文