Fixing the “MSVCP110D.dll is missing from your computer” issue

后端 未结 5 1350
春和景丽
春和景丽 2020-12-17 19:18

I am facing the following (fairly common) problem: I am running my program in Debug mode in VS2010 and/or VS2012, but at startup it crashes, saying:

T

5条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-17 19:21

    I had the same problem, I found out that the cause is that I used dll compiled with VS2012 in a VS2013 project. JUST downloaded the missing dll and put it in my linker path and wala: the program worked. I downloaded it from http://www.dll-files.com/.

    Particulars: My program was working in in release mode but not in the debug mode as it says the MSVCP110D.dll is missing. My code was an opencv image processing program. I put the missing dll in opencv linker path in the VS2013 project options.

提交回复
热议问题