2013/7/26 Ming Cheng <Ming.Cheng@xxxxxxxxxxxxx>: > Hi GCC Help, > > My configure and make commands looks running ok (no complain/error msg). > > "../gcc-4.8.1/configure --prefix=/usr/local/gcc-4.8.1 --enable-threads=posix --enable-__cxa_atexit --enable-clocale=gnu -enable-languages=c,c++ --enable-shared --with-gmp=/usr/local/gmp-5.1.2 --with-mpfr=/usr/local/mpfr-3.1.2 --with-mpc=/usr/local/mpc-1.0.1 --with-dejagnu=/usr/local/dejagnu-1.5" > > > So I ran "make check-gcc", but there are some errors (please refer to the attached doc). I am not sure whether the installation is ok or not? > It's ok with your "make check-gcc" process. By default only the FAIL cases are displayed on the screen. If you would like to see all the testcases status, you can try: $ make check-gcc RUNTESTFLAGS="--all" More helpful tips can be found at: http://gcc.gnu.org/install/test.html Besides, for the FAIL cases, you can check gcc.log and g++.log. They logged all the commands of invoking programs. It helps you reproduce the FAIL cases by hand. Best regards, jasonwucj