Date: Wed, 14 Jul 1999 10:18:14 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: Mohammad Manshaee cc: djgpp AT delorie DOT com, s7627237 AT Sepahan DOT iut DOT ac DOT ir Subject: Re: question about link with DJGPP In-Reply-To: <19990714050520.5975.rocketmail@web305.yahoomail.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Tue, 13 Jul 1999, Mohammad Manshaee wrote: > when I write this command: > > gxx main.exe main.o ...list of files.o...-lm > > only 12 files find and the message will be write that there is no such > files and stop. That's because DOS shell only reads the first 126 characters of the command line. The solution is either to use a Makefile, where you can put longer commands (up to 16KB), or put your list of files on a disk file and use that as a response file, like this: gxx @response-file For more details about this, read section 16.4 of the DJGPP FAQ list (v2/faq211b.zip from the same place you get DJGPP).