Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Profiler for Qt Creator + msvc compiler

How to profile a Qt program using Qt creator with msvc compiler?

like image 386
Christophe Avatar asked Sep 19 '12 16:09

Christophe


1 Answers

To the best of my knowledge, there is no integrated equivalent to valgrind in QtCreator for Windows.

On the other hand, you can use a stand-alone application like very sleepy, which supports any native Windows app. It just attaches to a running process and lets you analyze the captured data through the functions of the process. It has been useful to me for finding performance bottlenecks in QtCreator applications that needed to be compiled with MSVC.

like image 172
elperno Avatar answered Oct 18 '22 16:10

elperno