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