Date: Mon, 8 Jun 1998 19:20:11 +0300 (IDT) From: Eli Zaretskii To: Chet Simpson cc: djgpp AT delorie DOT com Subject: Re: Problem on command line gnumake, bash and other compilers In-Reply-To: <357aff25.6270481@news.earthlink.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Sun, 7 Jun 1998, Chet Simpson wrote: > The full command line IS printed to the console, however, only the > first 130 characters are actually passed to $(CC). This happens with > other executables as well, but does not seem to happen with gcc. > > Are there any special shell flags or command line options I can send > to bash in order to get around this problem? You need to change the command that make is to run so that Make invokes the shell. Use redirection or quoting to do that. When Make runs these programs through the shell, Bash will see they aren't DJGPP programs and will invoke them via a response file. (If these other programs don't support response files, you are stuck.)