On Sun, 24 Jun 2007 21:13:14 -0700 "James Keenan via RT" <[EMAIL PROTECTED]> wrote: > The profiling options code in config/init/defaults.pm reads: > > if ( $conf->options->get('profile') ) { > $conf->data->set( > cc_debug => " -pg ", > ld_debug => " -pg ", > ); > } > > Can anyone confirm that these are indeed gcc-specific? Thanks.
This flag convinces gcc to generate profiling code specifically for the GNU profiler, "gprof". I find it *extremely* unlikely that this flag would be available and/or mean the same thing for other compilers, but I do not currently have any others to test with. Mark