gprof

http://code.google.com/p/google-gprof2dot/

http://jrfonseca.googlecode.com/svn/trunk/gprof2dot/gprof2dot.py  下载gprof2dot.py

http://www.graphviz.org/Download_source.php下载源代码graphviz-2.18.tar.gz





Chmod 744 gprof2dot.py

Tar -zxvf graphviz-2.18.tar.gz

  ./configure

make

  su  -

make install



4   编译代码

gcc -pg -g -o uniqueCoreDump uniqueCoreDump.c



5  执行代码生成gmon.out



  执行命令产生gmon.out文件

  ./uniqueCoreDump

ll gmon.out



如果gprof ./uniqueCoreDump有:

gmon.out file is missing call-graph data



则表示没有正确的编译选项或者只有一个main函数



6  生成图片

gprof ./uniqueCoreDump  | ./gprof2dot.py -n0 -e0 | dot -Tpng -o output.png



  sz  output.png

你可能感兴趣的:(c,PHP,SVN,gcc,Google)