How to get WinDbg to show a call stack on Windows 7?

2011-09-12 Thread Don
I've set up a Windows 7 machine for working on DMD but I can't get windbg to work properly. Specifically, when I try to debug DMD itself, I don't get a call stack; I only see the current function. Everything else seems OK. Has anyone else experienced this? Any ideas?

Re: How to get WinDbg to show a call stack on Windows 7?

2011-09-12 Thread Trass3r
You could also use cv2pdb's -C option and Visual Studio to debug dmd.

Re: How to get WinDbg to show a call stack on Windows 7?

2011-09-12 Thread Vladimir Panteleev
On Mon, 12 Sep 2011 14:00:51 +0300, Don nos...@nospam.com wrote: I don't get a call stack; I only see the current function. Generally (not specific to DMD or WinDbg), this is a sign that the executable was compiled without stack frames (or that the stack is corrupted). -- Best regards,