On 05/11/2011 02:58 PM, Toon Moene wrote:

My C++-fu is pretty non-existent; I tried a C++ bootstrap and got this:

http://gcc.gnu.org/ml/gcc-testresults/2011-05/msg01129.html

Why is that a problem in the C++ bootstrap and not the normal one ?

For completeness, the message is generated by the attached script, run by cron at 18:10 UTC.

The build is a native one on x86_64-unknown-linux-gnu.

--
Toon Moene - e-mail: t...@moene.org - phone: +31 346 214290
Saturnushof 14, 3738 XG  Maartensdijk, The Netherlands
At home: http://moene.org/~toon/; weather: http://moene.org/~hirlam/
Progress of GNU Fortran: http://gcc.gnu.org/wiki/GFortran#news
#!/bin/sh

export TMPDIR=/scratch/toon/tmp$$
mkdir $TMPDIR

cd $HOME/compilers/gcc && \
svn up && \
echo "`date -u` (revision `svnversion .`)" >> LAST_UPDATED && \
cd ../obj-t && \
rm -rf *

( \
        ../gcc/configure \
                --prefix=/tmp/c++ \
                --enable-build-with-cxx \
                --with-gnu-ld \
                --disable-multilib \
                --disable-nls \
                --with-arch=native \
                --with-tune=native && \
        make -j 8 \
) >& $TMPDIR/log

if [ $? -eq 0 ]
then
    make -k -j 8 check
    ../gcc/contrib/test_summary | sh
else
    tail -90 $TMPDIR/log | \
        Mail -s \
            "Trunk C++ Bootstrap of `tail -1 ../gcc/LAST_UPDATED` FAILED" \
                gcc-testresu...@gcc.gnu.org
fi

rm -rf $TMPDIR

exit 0

Reply via email to