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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top