Garrett Gaston wrote: > > Below is what I got for gcc on chapter 6. I placed all the commands from > http://www.linuxfromscratch.org/lfs/view/stable/chapter06/gcc.html in a > script using && at the end of each line. Does anyone have any idea which > command from that page could have produced the following error? Thanks. > === libgomp Summary === > # of expected passes 1071make[4]: Leaving directory > `/sources/Chapter-6/6.17._GCC-4.6.2/gcc-build/i686-pc-linux-gnu/libgomp/testsuite'make[3]: > Leaving directory > `/sources/Chapter-6/6.17._GCC-4.6.2/gcc-build/i686-pc-linux-gnu/libgomp/testsuite'make[3]: > Entering directory > `/sources/Chapter-6/6.17._GCC-4.6.2/gcc-build/i686-pc-linux-gnu/libgomp'true > DO=all multi-do # makemake[3]: Leaving directory > `/sources/Chapter-6/6.17._GCC-4.6.2/gcc-build/i686-pc-linux-gnu/libgomp'make[2]: > Leaving directory > `/sources/Chapter-6/6.17._GCC-4.6.2/gcc-build/i686-pc-linux-gnu/libgomp'make[1]: > Target `check-target' not remade because of errors.make[1]: Leaving > directory `/sources/Chapter-6/6.17._GCC-4.6.2/gcc-build'make: *** [do-check] > Error 2make: Target `check' not remade because of > errors.root:/sources/Chapter-6/6.17._GCC-4.6.2/gcc-4.6.2#
It's really tough to parse the above. In any case 'make check' always produces an error because of (at least) expected failures (by the developers) in the test suite. For example: $ grep -i fail 079-gcc # of expected failures 256 # of expected failures 286 ./test-demangle: 874 tests, 0 failures # of expected failures 43 # of expected failures 3 # of expected failures 286 # of expected failures 256 # of expected failures 3 # of expected failures 43 -- Bruce -- http://linuxfromscratch.org/mailman/listinfo/lfs-support FAQ: http://www.linuxfromscratch.org/lfs/faq.html Unsubscribe: See the above information page
