简体   繁体   English

Allegro库缺少dll

[英]Allegro library missing dll

I have installed allegro 5.0.8 version on visual c++2010 express . 我已经在Visual c ++ 2010 express上安装了allegro 5.0.8版本。 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 . 但是现在,当我运行代码时,它没有出现任何语法错误,但是在打开控制台之后,一个窗口打开,报告我没有MSVCR110d.dll文件。 What it means ? 这是什么意思 ? How can I fix it ? 我该如何解决?

I means you should copy a MSVCR110d.dll to windows/system32 or beside your project. 我的意思是您应该将MSVCR110d.dll复制到Windows / system32或项目旁边。 If you don't have that file, you can find it on Internet, there are many site which have dll files to download. 如果没有该文件,则可以在Internet上找到它,有很多站点可以下载dll文件。

The letter d after name means this .dll will work with the debug mode compiled code. 名称后的字母d表示此.dll将与调试模式下的已编译代码一起使用。 If you just have MSVCR110.dll (without d ), try to compile your code in release mode. 如果您只有MSVCR110.dll (不带d ),请尝试在发布模式下编译代码。

Try installing the Microsoft C++ Redistributable package for both 32 and 64 bit 尝试为32位和64位安装Microsoft C ++可再发行组件包

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM