VC编译出现“Internal error during IncrBuildImage”错误

1,项目(Project)->属性(Property)->链接器(Linker)->常规(General) :

“启用增量链接(Enable Incremental Linking)”,将“是(/INCREMENTAL)”改为“否(/INCREMENTAL:NO)”;

2,这时会出现另外一个警 告:“FormatCom.obj : warning LNK4075: 忽略“/EDITANDCONTINUE”(由于“/INCREMENTAL:NO”规范)”;

3,选择项目->属性(Property pages)->配置属性(Configuration Properties) ->C/C++>常规:

“调试信息格式(Debug Information Format)”改为“程序数据库(Program Database(/Zi))”即可。

原文地址:https://www.cnblogs.com/lyjclsd/p/3493529.html