Christophe
Christophe

Reputation: 953

Profiler for Qt Creator + msvc compiler

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

Upvotes: 7

Views: 2008

Answers (1)

elperno
elperno

Reputation: 71

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.

Upvotes: 7

Related Questions