Reputation: 5372
I have one executable file (generated from C and C++ source files) on my laptop which is having Windows Operating system. I need to check whether the executable file is having any memory leaks or any errors using valgrind. But I have no idea how to use valgrind from windows machine or whether we can use valgrind from windows. Can any one please let me know whether we can use valgrind from Windows? Can you please suggest any other memory debugging tools if we can't use valgrind from windows machine?
Upvotes: 1
Views: 2993
Reputation: 1963
Visual C++ has CRT Debug Heap functions such as _CrtDumpMemoryLeaks.
Upvotes: 2