1、fatal error LNK1000:Internal error during IncrBuildImage
解决方法:选中对应工程-->点击右键,选择Properties-->Configuration Properties-->Linker-->General-->选中Enable Incremental Linking:改为No(/INCREMENTAL:NO),原始选项为Yes(/INCREMENTAL)。
接下来:选择C/C++-->General-->选中Debug Imformation Format:改为Program Database(/Zi),原始选项为Program Database for Edit & Continue(/ZI);点击,应用,确定即可。
2、Release下编译成功能正常运行,Debug下编译成功,运行时提示Runtime Error R6034
解决办法:选中对应工程-->点击右键,选择Properties-->Configuration Properties-->Linker-->Input-->Ignore Specific Library加入msvcrt.lib,点击应用、确定,然后删除Debug文件夹,重新编译即可。
3、error PRJ0019: A tool returned an error code from "Performing Post-Build Event..."
解决方法: 选中对应工程-->点击右键,选择Properties-->Configuration Properties-->Build Events-->Post-Build Event-->选中Excluded From Build:改为Yes,原始选项为No。