Anyone know of a good memory leak checker that supports GCC on Windows?
Unfortunately, IBM's Purify only works for GCC on Linux; and of course valgrind doesn't run on Windows.
|
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
I was looking for a solution to this recently. Have not been able to put time for a good working solution, this is a list of things i have seen.
I have to get around checking these things (will also look at other answers on this question when I do that). Thanks for your question. |
||||
|
|
|
Try dmalloc, it should work on GCC on Windows as far as I know. Check out http://sourceforge.net/projects/dmalloc/ |
|||
|
|
|
valgrind does not work on windows, but you can use wine + valgrind. It works pretty well in my experience. |
|||
|
|
According to the website, AQTime also supports GCC on Windows. I never tried that though. Anyway, AQTime is in my opinion one of the very best profilers (not only memory leaks) available, so if it does what you need, go for it. |
|||
|
|
|
http://betterlogic.com/roger/?p=1140 has a list of a few I found while googling--haven't tried any tho. |
|||
|
|
|
Memory Validator supports gcc and g++ on Windows, with COFF and STABS symbol support. |
|||
|
|