Elvis Dukaj
Elvis Dukaj

Reputation: 7368

memory check library for MinGW

I need a leak detector tool for application writte in MinGW (4.8.1). Visual Leak Detector seems (not sure) works only with msvc(9,10,11), and the valgrind port on windows seems works only with older version of gcc.

So what tools can I use for memory check my code?

Upvotes: 3

Views: 6126

Answers (3)

Artem Razin
Artem Razin

Reputation: 1286

Deleaker supports MinGW: https://www.deleaker.com/blog/2022/03/14/memory-leak-detection-tool-for-mingw/

Also it integrates with Qt Creator that seems to be the most popular IDE that supports MinGW.

Upvotes: 0

syberflex
syberflex

Reputation: 1624

I suggest https://github.com/milostosic/MTuner. It is free, has a cool GUI, handles mingw applications and has everything you need.

Upvotes: 2

Pierre Fourgeaud
Pierre Fourgeaud

Reputation: 14530

Here is two useful links :

Those links are from their FAQ.

I also like this one : http://www.softwareverify.com/cpp-memory.php. But it is not free, it has a free 30 days trial. This last one works really good.

Upvotes: 2

Related Questions