This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug driver/15690] New: compilation stops after the first file with errors
- From: "dann at godzilla dot ics dot uci dot edu" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 27 May 2004 18:12:13 -0000
- Subject: [Bug driver/15690] New: compilation stops after the first file with errors
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
Here is how to reproduce this:
echo junk > junk.c
echo junk > junk1.c
echo junk > junk2.c
mainline gcc would do:
gcc -c *.c
junk.c:1: error: parse error at end of input
i.e. it does not try to compile the files on the command line after encountering
the first error.
gcc-3.4.0 would print
gcc -c *.c
junk.c:1: error: parse error at end of input
junk1.c:1: error: parse error at end of input
junk2.c:1: error: parse error at end of input
--
Summary: compilation stops after the first file with errors
Product: gcc
Version: 3.5.0
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: driver
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: dann at godzilla dot ics dot uci dot edu
CC: gcc-bugs at gcc dot gnu dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15690