mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-25 12:55:24 +02:00
gprof: add page (#9485)
This commit is contained in:
parent
3fc7bd3d7d
commit
95f7704f8a
1 changed files with 21 additions and 0 deletions
21
pages/common/gprof.md
Normal file
21
pages/common/gprof.md
Normal file
|
@ -0,0 +1,21 @@
|
|||
# gprof
|
||||
|
||||
> Performance analysis tool for many programming languages.
|
||||
> It profiles the function executions of a program.
|
||||
> More information: <https://ftp.gnu.org/old-gnu/Manuals/gprof-2.9.1/html_mono/gprof.html>.
|
||||
|
||||
- Compile binary with gprof information and run it to get `gmon.out`:
|
||||
|
||||
`gcc -pg {{program.c}} && {{./a.out}}`
|
||||
|
||||
- Run gprof to obtain profile output:
|
||||
|
||||
`gprof`
|
||||
|
||||
- Suppress profile field's description:
|
||||
|
||||
`gprof -b`
|
||||
|
||||
- Display routines that have zero usage:
|
||||
|
||||
`gprof -bz`
|
Loading…
Add table
Reference in a new issue