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