What is a good easy to use profiler for C++ on Linux?

shergill picture shergill · Jul 23, 2009 · Viewed 75.2k times · Source

I need to profile some code running C++ on Linux. Can you guys recommend some profilers?

Answer

smcameron picture smcameron · Jul 23, 2009

Use gprof.

Just compile with -pg flag (I think (but am not sure) you have to turn of optimizations though.) and use gprof to analyze the gmon.out file that your executable will then produce.

eg:

gcc -pg -o whatever whatever.c

./whatever

gprof whatever gmon.out

Same thing with g++ and cpp.