• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

COPYINGH A D29-Jun-200117.6 KiB340281

ChangeLogH A D16-Dec-2004237 126

MakefileH A D03-May-2022366 1711

READMEH A D29-Jun-2001805 2918

cgprofH A D16-Dec-20044.2 KiB150113

cgprof.1H A D16-Dec-20042.2 KiB7270

gprof_sampleH A D19-Jan-200137.6 KiB670634

README

1cgprof - generate colored graphs for profiled executables
2
3INTRODUCTION
4
5cgprof is a bourne shell and awk script which takes input from profiling
6instrumented executables, and display a function call graph.
7
8cgprof helps to have a better understanding of program structure and
9execution. It makes hot spots identification visual and intuitive,
10and provides a minimum code coverage function.
11
12
13INSTALL
14
15      make install	(to install under /usr/local)
16  or
17      make install prefix=path
18
19REQUIREMENTS
20  You need to compile your source files with -pg option (for gcc, I don't
21  known for other compilers).
22
23  You need to install dot and dotty tools to perform graph presentation and
24  printing. Look at http://www.graphwiz.org
25
26Send comments, suggestions and bug reports to mvertes@free.fr
27
28-- Marc Vertes
29