maio
[h2N7SspZmY.git] / data / pages / gprof.txt
blob0703d5eb666cb29806cb661cbc3b1b63c6e91d1f
1 ====== Gprof ======
3 [[http://www.cs.utah.edu/dept/old/texinfo/as/gprof.html|GNU Profiler ]] - Determine which parts of a program are taking most of the execution time \\
5 ===== How to compile =====
7 Just add -pg option when compiling and linking.
9 ===== How to interpret profile data =====
11 <code bash>
12 $ gprof -c program_name
13 </code>