tags:

views:

41

answers:

1

Is it possible to use callgrind to produce the output like one given by gcov/lcov ? I'm reading their docs unable to find the exact option for callgrind_annotate

+1  A: 

It is not possible but callgrind_annotate nor kcachegrind should implement it. However with kcachegrind you have the call's count of each functions/methods.

Column Calls in Cost/All callers tab or Count in Callers tab should be relevant.

Doomsday