有没有在 Mac 上进行 minidump 的库?
MiniDump 是调试 Windows 崩溃的一个很棒的功能,特别是因为它很小,所以可以通过崩溃报告发送。 (窗口错误报告)。
但似乎Mac OS X和其他BSD系统只支持完整的核心转储。
Mac 或 BSD 系统上有小型转储实现吗?或者Mac软件开发人员如何分析客户的崩溃报告?
谢谢! -乔尼
MiniDump is a great feature for debugging crashes on Windows, especially because it is small, so it can be sent via crash reports. (Window Error Reporting).
But it seems Mac OS X and other BSD system only supports full core dump.
Is there any mini-dump implementation on Mac or BSD system? Or how does Mac software developer analyze customer's crash reports?
Thanks!
-Jonny
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以使用 Google Breakpad,它适用于 Windows、Mac 和 Linux。作为一个额外的好处,它创建的文件格式与 Windows 小型转储格式相同,无论它使用什么平台 - 因此您可以将当前的分析工具应用于来自 Windows 客户端的转储。
Yes, you can use Google breakpad, which works on Windows, Mac, and Linux. As an added bonus, the file format it creates is the same as the windows minidump format, no matter what platform it's using - so you can apply your current analysis tools to dumps from windows clients.