On Sat, Jun 22, 2013 at 1:57 AM, Nicholas Mc Guire <der.herr@xxxxxxx> wrote: > > For the qualification of GCC we wanted to compile gcc with code coverage > support so that we could get information about test-coverage of gcc itself > Unfortunately this did not work out yet. Just setting the CFLAGS in the > environment to include -fprofile-arcs -ftest-coverage does not work - the > build system removes them - looking at: When you run configure pass the --disable-bootstrap option. That will build only one stage, rather than three, which all you should need for coverage analysis. Ian