MTuner is a C/C++ memory profiler and memory leak finder
1–10 of 35 posts
Re: MTuner is a C/C++ memory profiler and memory leak finder
#2Doesn't work on a Mac.
Re: MTuner is a C/C++ memory profiler and memory leak finder
#3In case someone is looking for the equivalent on Linux and Mac, there is HeapTrack
https://github.com/KDE/heaptrack
edit: typo
Re: MTuner is a C/C++ memory profiler and memory leak finder
#4Doesn't work on a Mac.
Yes, it says that in the README. Plenty of people use other operating systems, though.
Re: MTuner is a C/C++ memory profiler and memory leak finder
#5Is there a binary version of this tool that can be downloaded somewhere? Seems a bit of a pain to install.
Re: MTuner is a C/C++ memory profiler and memory leak finder
#6Is there a binary version of this tool that can be downloaded somewhere? Seems a bit of a pain to install.
Follow the link to homepage in readme, there you'll find download link to binary: http://mtuner.net/index.html#download
Re: MTuner is a C/C++ memory profiler and memory leak finder
#72 Clause BSD! Woop woop!
Seriously this is another good app in the arsenal.
Re: MTuner is a C/C++ memory profiler and memory leak finder
#8Doesn't valgrind do this?
Re: MTuner is a C/C++ memory profiler and memory leak finder
#9Doesn't valgrind do this?
Most of it (memcheck and massif), but good luck getting the important data out. Memcheck is fine, but massif is quite restricted as a object-level memory monitor. I can't talk for MTuner, but HeapTrack is very, very useful to track and eradicate temporary allocations (useless C++ object create when using `==` or passing by copy.