开发者

How do I perform post-mortem debugging for Windows applications?

I develop unmanaged C++ applications in MSVC2008. And occasionally the application crashes at the customer site. I found an article on this. But it was written in 2002 for Visual Studio .NET. Has things changed since? Can开发者_如何学Python the same technique be used? Is there a newer method?


If you are debugging C and C++ apps for Windows, you want to learn how to use WinDBG (distributed as "debugging tools for Windows"). It has a bit of a learning curve, but the documentation is really good and it really is the best the platform has to offer.

As to your question, you can view a crash dump with windbg -z <dump filename>.


Usually release mode binaries (which typically run at customer site) are built with optimization (for speed/memory etc). Troubleshooting optimized binaries is usually not as easy.

So, first check if the crash is reproducible with release mode binaries built without optimization. If yes, then the job is easy (ier).

Here is some info.

Also look at a tool called ADPlus from microsoft

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜