I am using gprof to profile my application. I use gprof2dot to produce graphs, but the graphs tend to be large because there is plenty of "chain" calls of boost:: functions. Is there a way to remove this not necessary boost:: functions from the gprof output?
I can use --no-time=symspec option, but this allows only to exclude one function, not the whole namespace.