Tagged Questions

1
vote
4answers
191 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 …
0
votes
1answer
287 views

How can I know if an executable was incrementally linked or not ?

I'm trying to use Purify 6 to analyze a memory corruption in one of our executables built with VC++ 2003 (7.1). When I instrument the binary with the command: purify /Replace=yes /Run=no myprog.exe …
4
votes
5answers
182 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 …
0
votes
1answer
79 views

ilk target directory

If incremental linking is enabled, Visual C++ generates the *.ilk file in $(TargetDir), can I override this behavior and redirect it to another directory? (without using a post-build step)