I have a large binary that is built from many static libraries and standalone cpp files. It is configured to use incremental binding, all optimizations are disabled on /Od - this is a debug build.
I noticed that if I changed any separate cpp file, then incremental binding will be performed quickly - 1 min. But if I change any cpp in any static lib, then it works for a long time - 10 minutes, at the same time as a regular link. In this case, I am not benefiting from incremental binding. Is it possible to speed it up? I am using VS2005.
c ++ performance visual-studio visual-studio-2005 incremental-linking
ks1322
source share