Disable gcov in gcc build

Does anyone know how to tell it not to build gcov when building GCC? This gives me many errors for my target (powerpc-wrs-vxworks).

+1


source to share


1 answer


I found this line in gcc / Makefile.in:

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

      



Try removing the gcov components and re-configuring.

+1


source







All Articles