c++ - Low performance of Incremental linking -


I have a large binary that is composed of several stable libs and standalone CPP files. It is configured to use incremental linking, all adaptations are disabled by / od / - this is debug build

I have noticed that if I send any CDP file Changes, the incremental link runs fast - 1 minute but if I change any CPP in any static lib then it runs for a long time - 10 minutes, time like normal linking. In this case, I am not getting any benefit from incremental linking. Is it possible to speed up? I use VS2005.

Set the linkir for the general property page for your project. This will link individual .obj files of reliance .lib instead of .lb, which may have some different side effects.

Comments

Popular posts from this blog

mysql - BLOB/TEXT column 'value' used in key specification without a key length -

c# - Using Vici cool Storage with monodroid -

c# - Confused over DLL entry points (entry point not found exception) -