4

Possible Duplicate:
Is there a good Valgrind substitute for Windows?

I am looking for a free memory debugger for Windows, suited for debugging C++ applications built with VC, with similiar functionality to Insure++ or Purify.

Any recomendations?

  • GUI is a plus

  • Integration with VS is a bigger plus

Community
  • 1
  • 1

4 Answers4

2

Ollydbg is also pretty useful.

none
  • 5,701
  • 28
  • 32
1

valgrind + cygwin

ANSIMD (Ansi Memory Debugger)

UPS Debugger

GoBug Debugger

Microsoft Debugging Tools

Stack Trace Analysis Tool (STAT)

Mono Migration Analysis

http://www.debuginfo.com/ - Might be some of tools u can find over there

joe
  • 34,529
  • 29
  • 100
  • 137
1

Try DUMA, I have used it before, it's cross-platform and the latest release is recent.

Diaa Sami
  • 3,249
  • 24
  • 31
0

Purify is a memory profiler. You can try DebugDiag provided by windows.It can give you memory dumps and at various points and you can then check for memory leaks.

Windbg is also good.

anand
  • 11,071
  • 28
  • 101
  • 159