How to overcome limit of linking multiple object files in make file
I am new to makefile concept. So please can anyone give me example to overcome the problem of linking too many ma开发者_运维百科ke files. Because I am getting error "fatal error U1095:" in my make file.
Assuming windows (since on windows, the command line is limited to 128 characters (?! really - sic?!))
I suggest you use @response
files for LINK.EXE and or CL.exe etc.
LINK.EXE @response.tmp
You can store all commandline parameters in the text file without any limit.
Update MSDN calls them Command Files
精彩评论