This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug driver/15690] New: compilation stops after the first file with errors


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]