LinkIssue: Error 'LINK : fatal error LNK1123: failure during conversion to COFF: file invalid or cor
参考:http://blog.csdn.net/junjiehe/article/details/16888197
使用VisualStudio 编译链接中可能出现如下错误:
LINK : fatal error LNK1123: failure during conversion to COFF: file invalid or corrupt
网上有如下解决方法:
1. disable incremental linking
Project Properties
-> Configuration Properties
-> Linker (General)
-> Enable Incremental Linking -> "No (/INCREMENTAL:NO)"
2. turning off "Embed Manifest"
但是我使用这两种方法均不奏效.
有人建议说把window下面的framework4.0的cvtres.exe 复制到 vs2010的bin目录下才有用。
但是我删除了“C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\BIN“ 中的cvtres.exe就可以了。