warning LNK4075: ignoring '/EDITANDCONTINUE' due to '/OPT:ICF' specification

14,824

The /EDITANDCONTINUE feature allows you to edit the code in the debugger and if it compiles and links, continue.
The /OPT flags are optimisations. See here If the code has been optimised it cannot let you edit and continue.

To stop the warning turn one off, or the other. See here

Share:
14,824

Related videos on Youtube

TrungLuu
Author by

TrungLuu

Updated on July 04, 2022

Comments

  • TrungLuu
    TrungLuu almost 2 years

    When I porting source code from VC++6 to VC++9 with visual studio 2008, I have this warning:

    warning LNK4075: ignoring '/EDITANDCONTINUE' due to '/OPT:ICF' specification
    

    I don't how to fix this warning. Please can somebody help me? Thanks so much!