is there a limit on object files for VC++ 2003

  • Thread starter Thread starter Lynn McGuire
  • Start date Start date
L

Lynn McGuire

Is there a limit on the number of object files for VC++ 2003 ?

I am trying to port a very large program with about 4000 source
code files.

The linker is giving me an error message about trying to find a
non-existent object file.

Thanks,
Lynn
 
Lynn said:
Is there a limit on the number of object files for VC++ 2003 ?

I am trying to port a very large program with about 4000 source
code files.

The linker is giving me an error message about trying to find a
non-existent object file.

There's a limit on linker command-line length, even when it's in a response
file, IIRC.

Are all 4000 obj's being passed to a single link invocation, or are they
broken up into libraries?

-cd
 
Back
Top