Re: linking warning message. C Question!
Robby <Robby@discussions.microsoft.com> wrote:
Why is the following linker warning is generated:
1>LINK :
=
C:\_DTS_PROGRAMMING\C_PROGRAMMING\c\C_TESTS\C_FILES\CFILES\ennnum\Debug\e=
nnnum.exe
not found or not built by the last incremental link; performing full
This warning has nothing to do with your actual source code. You have =
incremental link turned on (default in Debug build), which speeds up =
linking somewhat: if, say, only one OBJ file changed, the linker can =
take a previously built EXE and update just that one module. Time =
savings can be significant for large projects.
In this case, the linker tried to do that, but couldn't find the =
previously built EXE, or found it but discovered that it wasn't last =
built with incremental linking on. The warning is harmless, you can =
safely ignore it.
--
With best wishes,
Igor Tandetnik
With sufficient thrust, pigs fly just fine. However, this is not =
necessarily a good idea. It is hard to be sure where they are going to =
land, and it could be dangerous sitting under them as they fly overhead. =
-- RFC 1925