Click to See Complete Forum and Search --> : Warning Message


Zulfi Khan
April 29th, 1999, 03:26 AM
Ihave added a dialog box to my program. After that I am getting the following warning:
Invalid incremental status file "Debug/Lib3.ilk" linking nonincrementally
How can I get rid of this warning? Does it create any problems in future?

Michael Decker
April 29th, 1999, 08:26 AM
Did you try rebuilding the entire project? That may get rid of it.

LALeonard
April 29th, 1999, 05:51 PM
I get this about once a week. It is a trivial problem; simply delete the ilk file at that will fix it.

LA Leonard - http://www.DefinitiveSolutions.com

Dave Lorde
April 30th, 1999, 06:10 AM
This is usually just an informative message to tell you that the linker can't use the incremental link file to do an incremental link (normally because the padding space has all been used, or the change was too big for incremental linking), so a full link will be done.

If you don't mind doing a full link each build, clear the 'Link Incrementally' check box in the Project Settings dialog.

Check out the docs on the /INCREMENTAL linker option.

Dave