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?
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?
You can use the memory analizer that ships with Qt Creator. Just open your project, and on the left pane go to
Analyze
, then chooseValgrind memory analizer
from the drop down menu and start your project.