Reputation: 4173
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?
Upvotes: 1
Views: 346
Reputation: 1487
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.
Upvotes: 1