一、fatal error LNK1295: '/OPT:NOREF' not compatible with '/LTCG:incremental' specification; link without '/LTCG:incremental'函數
Properties -> General -> Whole Program Opt -> "No Whole Program Opt"spa
二、error LNK2019:unresolved external symbol __imp__fprintf referenced in function _ShowError ci
Properties -> Linker -> Input -> Additional Dependencies -> 添加 「legacy_stdio_definitions.lib;」 rem
//出現這個問題的緣由是vs2015默認編譯時將許多標準庫採用內聯方式處理,於是沒有能夠連接的標準庫文件,因此要專門添加標準庫文件來連接標準庫中的函數。it
三、error LNK2019: unresolved external symbol __imp____iob_func referenced in function _ShowErrorio
在源文件中添加: extern "C" { FILE __iob_func[3] = { *stdin,*stdout,*stderr }; }編譯