Dark Bit Factory & Gravity

PROGRAMMING => C / C++ /C# => Topic started by: va!n on September 10, 2017

Title: Compiling VS2013 project with VS2015 fails
Post by: va!n on September 10, 2017
Hi guys,

when trying to compile my old VS2013 projects with VS2015, i get following compile errors:

Code: [Select]
Code         Description                                                          Project File Line Suppression State
Error LNK2001 unresolved external symbol ___acrt_iob_func       #####\Main.obj 1
Error LNK2001 unresolved external symbol ___stdio_common_vfwprintf #####\Main.obj 1
Error LNK1120 2 unresolved externals ####Rebuild.exe 1

Any idea how to solve this problem?
Title: Re: Compiling VS2013 project with VS2015 fails
Post by: Rbz on September 11, 2017
This is due to your old vs2013 project have turned on "Ignore All Default Libraries" and your are trying to use CRT lib functions.
Try to disable it and see what happens.