rodrigob
rodrigob

Reputation: 2927

Which is the best replacement for KProf?

I'm searching for a "good enough" gprof output visualizer. Kprof seems unmaintained.

Profiling is an important part of (speed sensitive) applications development, but I fail to find support on the major Linux IDEs.

Any suggestions ?

Upvotes: 4

Views: 1972

Answers (2)

stefaanv
stefaanv

Reputation: 14392

Probably not what you're looking for, but for me, gprof with an editor with decent search does the job. Are you looking for in what case the top X functions are called so you can optimise them or do you want a nice call-graph of your application?

Upvotes: 0

Gunther Piez
Gunther Piez

Reputation: 30439

I recommend using KCachegrind to vizualize the logs given by oprofile.

Upvotes: 1

Related Questions