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 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. / od / - this is debug build
Comments
Post a Comment