This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: *** bootstrap fails for 3.4.0 20040113 (experimental) on i586-suse-linux-gnu
- From: <dank at kegel dot com>
- To: <gcc at gcc dot gnu dot org>
- Date: Thu, 15 Jan 2004 01:20:10 -0500 (EST)
- Subject: Re: *** bootstrap fails for 3.4.0 20040113 (experimental) on i586-suse-linux-gnu
> As some people obviously feel extremely annoyed by failure reports
> that do not result from a gcc bug, and as it is practically not possible
> for a build script to decide whether this is the case or not,
> I will stop reporting these failures to gcc-testresults at all.
I think your reports are great... sad to see them stop.
BTW any chance you could still automatically report ICEs
which explicitly tell you where to report them? e.g.
use a script like this:
#!/bin/sh
LOGFILE=$1
if grep -q 'ld: Please report this bug' $LOGFILE ; then
echo bug-binutils@gnu.org
exit 0
fi
if grep -q 'http://gcc.gnu.org/bugs.html' $LOGFILE ; then
echo gcc-bugs@gcc.gnu.org
exit 0
fi
exit 1
Sadly, the bug-binutils list is pretty useless these days,
but maybe the fsf could be convinced to disallow posts
from nonsubscribers (with a polite bounce that tells you how
to subscribe).
- Dan