Tagged Questions

6
votes
3answers
333 views

Low performance of Incremental linking

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 ...
4
votes
6answers
619 views

Partial builds versus full builds in Visual C++

For most of my development work with Visual C++, I am using partial builds, e.g. press F7 and only changed C++ files and their dependencies get rebuilt, followed by an incremental link. Before ...
2
votes
5answers
5k views

C++: LINK : debug\XXXXX.exe not found or not built by the last incremental link; performing full link

Using visual studio 2008 SP1, This line: LINK : debug\XXXXX.exe not found or not built by the last incremental link; performing full link appears every single time I compile the project, no matter ...