Mail Archives: djgpp/1999/07/14/03:23:03
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).
- Raw text -