Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!tut.cis.ohio-state.edu!CSVAX.CALTECH.EDU!andy From: andy@CSVAX.CALTECH.EDU (Andy Fyfe) Newsgroups: gnu.gcc.bug Subject: difference in gcc 1.34 front end and cc (sunos 3.5, bsd 4.2) Message-ID: <8904120105.AA03772@csvax.caltech.edu> Date: 12 Apr 89 01:05:52 GMT Sender: daemon@tut.cis.ohio-state.edu Distribution: gnu Organization: GNUs Not Usenet Lines: 20 If "gcc -c" is given a list a files, and one bombs out, then gcc deletes all the .o files made so far. Cc keeps them. % cat a.c foo() {} % cat b.c bar() {} % cat c.c error! % cc -c ?.c a.c: b.c: c.c: "c.c", line 2: syntax error % echo ?.o a.o b.o % gcc -c ?.c c.c:1: parse error before `!' % echo ?.o echo: No match.