full log in the attach file.
I get the following errors:

make[3]: Leaving directory `/sources/gcc-build/i686-pc-linux-gnu/libmudflap'
make[2]: Leaving directory `/sources/gcc-build/i686-pc-linux-gnu/libmudflap'
make[1]: *** [check-recursive] Error 1
make[1]: Target `check' not remade because of errors.
make[1]: Leaving directory `/sources/gcc-build/i686-pc-linux-gnu/libmudflap'
make: *** [check-target-libmudflap] Error 2
make[1]: Entering directory `/sources/gcc-build/i686-pc-linux-gnu/libiberty'
make[2]: Entering directory
`/sources/gcc-build/i686-pc-linux-gnu/libiberty/testsuite'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory
`/sources/gcc-build/i686-pc-linux-gnu/libiberty/testsuite'
make[1]: Leaving directory `/sources/gcc-build/i686-pc-linux-gnu/libiberty'
make: Target `check' not remade because of errors.


I compile gcc with the script:
#!/bin/bash
logDir='/mnt/hda7/sources/time'
die() {
    echo "Error: $1 failed"
    echo "Error: $1 failed" >>  $logDir/`echo $1`.log
    exit 1
}
( time {
exec < $1
while read line;
do
       echo $line
       $line >/dev/null &>$logDir/`echo $1`.log || die $line
done
} ) 2>$logDir/`echo $1`.time

the following file:

../gcc-4.0.3/configure --prefix=/usr --libexecdir=/usr/lib
--enable-shared --enable-threads=posix --enable-__cxa_atexit
--enable-clocale=gnu --enable-languages=c,c++
make
make -k check
make install
ln -sv ../usr/bin/cpp /lib
ln -sv gcc /usr/bin/cc

Attachment: gcc-ins-build.log
Description: Binary data

-- 
http://linuxfromscratch.org/mailman/listinfo/lfs-support
FAQ: http://www.linuxfromscratch.org/lfs/faq.html
Unsubscribe: See the above information page

Reply via email to