Function Hiding
Hide functions not called long enough.
Unticking this item adds '-z' to GPROF's command line. This will force GPROF to print data about every single function inside the executable.
Hide statically linked file-local functions.
As static functions do not belong to the globals, they are not visible outside the function or file they were defined in. Time spent in them can therefore not be attributed to these globally unknown functions. The actual time spent is added to the function called before it by GPROF. This option will exclude time spent in these functions from the generated data. This option enables the '-s' command.
Hide functions called less than x times
Exactly as the label tells you, function called less than X times will be omited. This options controls the '-m (value)' flag.
Custom Commands
Use these commands instead
If you check this, Dev-C++ will use the commands you enter below instead. These command will be editted to what Dev is currently using if you haven't checked this option.