Date: Mon, 2 Sep 1996 17:10:22 +0200 (IST) From: Eli Zaretskii To: DJ Delorie Cc: djgpp-workers AT delorie DOT com Subject: Re: make problems In-Reply-To: <199609021221.IAA27819@delorie.com> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Mon, 2 Sep 1996, DJ Delorie wrote: > > Did you build Make with the new dosexec, or build the gcc (the one you > > use to compile the new version of gcc) with the new startup code? If so, > > there might be some bug in passing arguments, or inconsistency between > > the new spawn and the old crt1. > > Yes to both. Then please keep in mind that command lines passed from `spawn' aren't globbed and/or stripped of the quote characters by the new startup code, so commands like ``etags *.c'' won't work (that's why Make 3.75 will call `system' in these cases). It shouldn't be a problem with the command you use for gcc, because that one is invoked via a batch file (it has double quotes which is treated as a character special to the shell), but still...