Hello, I have a problem windows shell input line can be up to 125 characters, but I have to link more object files and their names together are more than 125 characters, how can I link all object files with make program?
With difficulty. The best way is to upgrade to Windows 2000 or XP and use a 32-bit make.exe, thereby removing the command-line length restriction.
If you can't do that, then you should link groups of object files into libraries using the ar command, then pass each library name on the linker command line.
I could have said mingw instead of Cygwin. They're both 32-bit native Windows applications -- unlike DJGPP, which is a 32-bit app inside a 16-bit app inside a 32-bit OS.