Allegro library missing dll

主宰稳场 提交于 2019-12-25 04:54:14

问题


I have installed allegro 5.0.8 version on visual c++2010 express . But now when I run the code it doesn't give any syntax errors but after opening the console a window opens which reports that I don't have MSVCR110d.dll file . What it means ? How can I fix it ?


回答1:


I means you should copy a MSVCR110d.dll to windows/system32 or beside your project. If you don't have that file, you can find it on Internet, there are many site which have dll files to download.

The letter d after name means this .dll will work with the debug mode compiled code. If you just have MSVCR110.dll (without d), try to compile your code in release mode.




回答2:


Try installing the Microsoft C++ Redistributable package for both 32 and 64 bit

32: http://www.microsoft.com/en-us/download/details.aspx?id=5555 64: http://www.microsoft.com/en-us/download/details.aspx?id=14632



来源:https://stackoverflow.com/questions/16741801/allegro-library-missing-dll

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!