This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: 'make check' errors when '--enable-languages=c,fortran'
- From: Brian Dessent <brian at dessent dot net>
- To: gcc-help at gcc dot gnu dot org
- Date: Thu, 22 Jun 2006 19:02:18 -0700
- Subject: Re: 'make check' errors when '--enable-languages=c,fortran'
- References: <BAY105-F35BF7D7FC993A3279E9D7EC0850@phx.gbl>
- Reply-to: gcc-help at gcc dot gnu dot org
sean yang wrote:
> objgcc4.0.2_withf95>make check
> make[1]: Entering directory
> `/export/home/originalgcc402/objgcc4.0.2_withf95/fixincludes'
> autogen -T ../../gcc-4.0.2/fixincludes/check.tpl
> ../../gcc-4.0.2/fixincludes/inclhack.def
> make[1]: autogen: Command not found
> make[1]: *** [check] Error 127
> make[1]: Leaving directory
> `/export/home/originalgcc402/objgcc4.0.2_withf95/fixincludes'
> make: *** [check-fixincludes] Error 2
This means you don't have autogen installed, and so it can't run the
tests in the fixincludes dir.
This is why the documentation tells you to run "make -k check" so that
it will continue to the actual tests of the compiler.
Brian