One of applications crashes from time to time and generate .dmp file. What tool can I use to analyze this kind of files? I'd like to see the call stack etc.
Asked
Active
Viewed 1.4k times
3
-
Try first `file your.dmp` ; show its output in your question; then consider using `gdb yourbinary your.dmp` – Basile Starynkevitch Jun 01 '18 at 05:02
-
https://stackoverflow.com/q/2080918/841108 could be a near duplicate – Basile Starynkevitch Jun 01 '18 at 05:05
-
Does Crash Reporter not kick in when your app crashes? That will give you a stack trace. You will find them in `~/Library/Logs/Diagnostic Reports` in the Console. – Paul Sanders Jun 02 '18 at 11:07
-
I haven't been able to read a Windows .dmp file (from BSOD) on macOS so I ended up installing a Windows VM. – jspinella Apr 13 '23 at 22:13