Debug c ++ in Visual Studio

0

I installed Visual Studio C ++ 2010 Express. I created a project using Win32 Console Application, I added a New Iten C ++ File (.cpp) to this project, but at the time of running the error appears:

1>LINK : fatal error LNK1123: failure during conversion to COFF: file invalid or corrupt
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
    
asked by anonymous 04.03.2016 / 18:36

1 answer

1

You can disable incremental linking to work around the problem, or you can upgrade to a more modern version ...

Project Properties 
   -> Configuration Properties 
       -> Linker (General) 
          -> Enable Incremental Linking -> "No (/INCREMENTAL:NO)"
    
04.03.2016 / 18:42