CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4

Thread: Warning Message

  1. #1
    Join Date
    Apr 1999
    Location
    Pakistan
    Posts
    207

    Warning Message

    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?


  2. #2
    Join Date
    Apr 1999
    Posts
    90

    Re: Warning Message

    Did you try rebuilding the entire project? That may get rid of it.


  3. #3

    Re: Warning Message

    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

  4. #4
    Join Date
    Apr 1999
    Posts
    383

    Re: Warning Message

    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


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured