Is there any alternative available for checking memory leaks on Cygwin as it does not support Valgrind?
Asked
Active
Viewed 1.8k times
3 Answers
3
I don't know much about Windows, but you can try this tool, it seems that it has porting the soft on Windows platform: http://code.google.com/p/drmemory/
Some documentation is available here:
http://www.burningcutlery.com/derek/docs/drmem-CGO11.pdf
Hope this help.
Regards.

TOC
- 4,326
- 18
- 21
-
3OK thanks for your response , but Dr. Memory supports applications compiled with the MinGW gcc or g++ compilers,Currently there is no support for applications built with Cygwin gcc. – Ankush Aug 05 '12 at 09:28
1
Check for DUMA project http://duma.sourceforge.net/. It is a little different than you need, but hope you can find an answer there.

t0k3n1z3r
- 343
- 3
- 7
1
I have recently used CMemLeak to great success. It is very easy to use, you just have to include it in every header, and detects memory leaks, invalid writes and non heap frees. It does not detect invalid reads.

undur_gongor
- 15,657
- 5
- 63
- 75

Minion91
- 1,911
- 12
- 19