To use MinGW gprof with Eclipse, in the project settings, under complier, enable the gprof option. Further, in the Linker section, under command line, add -pg
to your list. Build the program. Run the program and check that the gmon.out
file has been created.
You can run gprof as follows: gprof.exe
.
You can run gprof from within eclipse by configuring the external tools:
- Open the external tools dialog
- Double click on program to create a new program configuration
- Give this profile a name, eg. gprof
- In the location text box, give the FULL path to the grpof command
- In the working directory, choose: ${workspace_loc:/path/to/executable}
- Arguements: ${file_prompt} ${GMON}, where GMON has been assigned the path to the gmon.out file using the variables button.