0

are there any recommendations for tools that can analyze the stack trace from a crash? If not, are there any guides to writing one? I mean a tool that can look at a bunch of these dumps and catch patterns. These are crash logs of c++ applications.

easythrees
  • 1,530
  • 3
  • 16
  • 43

1 Answers1

0

For windows I recommend WinDbg: http://msdn.microsoft.com/en-us/windows/hardware/gg463009 there are various useful sites you can google for that will describe how to use it.

You can also open crash dumps using Visual Studio: http://msdn.microsoft.com/en-us/library/fk551230%28v=vs.90%29.aspx

There is a similar SO post here for linux: Which is the best Linux C/C++ debugger (or front-end to gdb) to help teaching programming?

gdb should be fine for what you are asking for and Eclipse

Community
  • 1
  • 1
EdChum
  • 376,765
  • 198
  • 813
  • 562