How do you trace application memory leaks?

351 views Asked by At

I have a large application which I run on a mobile device, written in C++ where it's UI is built using QT.

Do you know any utility that I can run to check for memory leaks while running the QT application on the mobile device?

1

There are 1 answers

0
Pietro Lorefice On BEST ANSWER

You can use the memory analizer that ships with Qt Creator. Just open your project, and on the left pane go to Analyze, then choose Valgrind memory analizer from the drop down menu and start your project.