views:

181

answers:

1

Anyone know how, when making GCC, to tell it not to build gcov? It's giving me lots of errors for my target (powerpc-wrs-vxworks).

+1  A: 

I found this line in gcc/Makefile.in:

LANGUAGES = c gcov$(exeext) gcov-dump$(exeext) $(CONFIG_LANGUAGES)

Try removing the gcov parts and rerun configure.

JesperE