How do I detect what application generated a specific core dump on OS X?

China☆狼群 提交于 2019-12-08 13:20:22

问题


I want to detect what application generated a core dump on OS X.

How can I find this information? Runing file core.1234 does not give the application name, online something like Mach-O 64-bit core x86_64.


回答1:


You use otool:

$ otool -c core.1234

for more, see man page. More magics can be found in this fantastic document Mac OS X debugging magic.



来源:https://stackoverflow.com/questions/3779625/how-do-i-detect-what-application-generated-a-specific-core-dump-on-os-x

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!