3

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!

suspectus
  • 16,548
  • 8
  • 49
  • 57
TrungLuu
  • 595
  • 3
  • 8
  • 9

1 Answers1

2

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

Community
  • 1
  • 1
doctorlove
  • 18,872
  • 2
  • 46
  • 62