I have a large binary which is built of many static libs and standalone cpp files. It is configured to use incremental linking, all optimizations are disabled by /Od - it is debug build.

I noticed that if I change any standalone cpp file then incremental linking runs fast - 1 min. But if I change any cpp in any static lib then it runs long - 10 min, the same time as ordinary linking. In this case I gain no benefit from incremental linking. Is it possible to speedup it? I use VS2005.

link|improve this question

Do you change only the actual .lib or a header file, in that last case it's not really possible (but you could see some benefit from using pch). – KillianDS Sep 2 '11 at 9:12
I am changing just one cpp file from .lib. – ks1322 Sep 2 '11 at 9:17
Check the .lib project for the /Yu and /Z7 options. – Hans Passant Sep 2 '11 at 10:40
@Hans I have only /Zi in options for generating pdb. I am not responsible for changing them. Is it absolutely necessary? – ks1322 Sep 2 '11 at 11:40
If you have to generate symbols than you have to leave /Zi option as it is. You have to check in the output window what happens differently in your "worst case scenario". Does that change imply beside library files compiling only linking of the modified library with the large binary ? Or are there some other dependencies triggered so that it ends up compiling much more ? – Ghita Sep 9 '11 at 13:19
show 4 more comments
feedback

3 Answers

up vote 7 down vote accepted
+100

Set "Use Library Dependency Inputs" in the Linker General property page for your project. That will link the individual .obj files from the dependency .lib instead of the .lib, which may have some different side effects.

link|improve this answer
I agree, this setting is very useful for speeeding up linking. – quant_dev Sep 15 '11 at 17:22
1  
Yes - this answers the question directly. I used to use a product called Xoreax Incredibuild with Visual Studio 2003; it has a feature it dubbed "Incredilink" that did exactly this. It had a HUGE impact on reducing build times. It appears that functionality was pulled directly into Visual Studio 2005. – Matt Dillard Sep 16 '11 at 3:38
@MSN Thanks. My project type is MakeFile project. There is no Linker property page in this type of project. Can I set this property anyway? Or pass it to linker command line? Anyway +1 for the answer. – ks1322 Sep 16 '11 at 7:55
Though I can't check it right now, according to MSDN this answers my question. – ks1322 Sep 16 '11 at 12:27
@ks1322, if you are generating the link command line yourself, you will have to enumerate the .obj files to use yourself. That's what visual studio does behind the scenes (which is why it can fail pre VS 2010 for .lib projects with a ton of individual .obj files). – MSN Sep 16 '11 at 16:56
feedback

I going to give you a different type of answer. Hardware.

What is your development environment? Is there anyway to get more RAM or to put your project onto an Solid State Drive? I found that using a SSD sped up my link times by an order of magnitude on my work projects. Helped a little for compile times, but the linking was huge. Getting a faster system of course also helped.

link|improve this answer
+1 for hardware solution. SSD would speed it up. Almost -1 for other suggestions like RAM (how large should be a project that linking requires more than mainstream 2-4-6 GB of RAM?) or faster system (what system do you mean?) – Andy T Sep 15 '11 at 20:55
You'd be surprised on what kind of systems people attempt to code on @Andy. When I upgraded from an older Dual core 2Gig RAM WinXP box to a quad core 8gig Win7 box, everything got a bit faster. Not as big an increase as the SSD, but a difference worth mentioning. – Michael Dorgan Sep 15 '11 at 21:25
+1 for SSD storage – ks1322 Sep 16 '11 at 12:30
feedback

If I understand correctly (after using Visual Stuio for some years), the incremental linking feature does not work for object files that is part of static libraries.

One way to solve this is to restructure your solution so that your application project contains all source files.

link|improve this answer
Thanks. Could you provide links to MSDN or some other resource to confirm this? I want to be sure that incremental linking is impossible with object files from static libs. – ks1322 Sep 15 '11 at 16:14
Sorry, no, this is based on my own experience working with the tools. – Lindydancer Sep 16 '11 at 11:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.