Hello,
We are working on an application built in using Perforce Jam and Visual Studio 6. My work consists in the compiler migration (from VC6 to VS2010). For one DLL, I have a bug with the VS2010 linker (LINK.EXE).
We use the following call:
LINK $(LINKFLAGS) /export:$(EXPORTSYMBOLS_$(USELIBS:S=)) /out:$(<) $(UNDEFS) /implib:$(IMPLIB) @<+ $(NEEDLIBS) $(LINKLIBS) +> @<+ $(>) +>
with the list of .obj to link in @<+ $(>) +>…. The linker raise an error because in reading the file with le list of .obj files, it truncates the data… After several tests, we isolate that the buffer size is 8192 bytes (and my file list size is around 22Kb)… I searched in the documentation and in the development websites (like stackoverflow) a solution to my issue and I found nothing.
Is there a way to increase the internal buffer size or another solution which can allow me to build my DLL?
Best regards