I have a project in VS2003 that never gets "up-to-date". It always runs the
linker and always issues an out-of-date want to rebuild warning when I
execute the project from the IDE. Is there some way I can get the IDE to
tell me what it thinks is out of date? This is the only project, out of
many, that does this.
Do you have the incremental build option turned off?
--
Bryan Phillips
MCSD, MCDBA, MCSE
Blog: http://bphillips76.spaces.live.com
Web Site: http://www.composablesystems.net
> I have a project in VS2003 that never gets "up-to-date". It always runs the
> linker and always issues an out-of-date want to rebuild warning when I
> execute the project from the IDE. Is there some way I can get the IDE to
> tell me what it thinks is out of date? This is the only project, out of
> many, that does this.
Bill Below - 20 Apr 2007 16:18 GMT
Yes. Here is the linker command line:
/OUT:"Release/select.exe" /INCREMENTAL:NO /NOLOGO /DEBUG
/PDB:"Release/select.pdb" /SUBSYSTEM:WINDOWS /OPT:REF /OPT:ICF /MACHINE:X86
\vnasys\vnafile\release\vnafile.lib
The same thing happens in debug.
> Do you have the incremental build option turned off?
>
[quoted text clipped - 9 lines]
> > tell me what it thinks is out of date? This is the only project, out of
> > many, that does this.
Bryan Phillips - 22 Apr 2007 05:27 GMT
After reviewing the information about the incremental switch, I was
surprised to see a lot of things that would cause even a full link to
occur.
http://msdn2.microsoft.com/en-us/library/4khtbfyf(VS.80).aspx
--
Bryan Phillips
MCSD, MCDBA, MCSE
Blog: http://bphillips76.spaces.live.com
Web Site: http://www.composablesystems.net
> Yes. Here is the linker command line:
>
[quoted text clipped - 17 lines]
> > > tell me what it thinks is out of date? This is the only project, out of
> > > many, that does this.