zoukankan      html  css  js  c++  java
  • [转]没有找到MSVCR80D.dll的解决方法

    没有找到MSVCR80D.dll
    “因为没有msvcr80.dll
    可以改一下编译选项 多线程dll(/MD)改成多线程(MT)这样就静态链接,
    也可以从你的vc8安装盘上找到再分发包vcredist_xxx.exe和你的程序捆绑安装。”

    感觉以下两种解决办法是比较方便的:
    方法一:
    在C:\Program Files\Microsoft Visual Studio 8\VC\redi
    st\Debug_NonRedist\x86\Microsoft.VC80.DebugCRT 下找到了下列文件:

    msvcm80d.dll
    msvcp80d.dll
    msvcr80d.dll
    Microsoft.VC80.DebugCRT.manifest

    把这几个文件拷贝到目标机器上,与运行程序同一文件夹或放到system32下,就可以运行那个程序了。

    方法二:
    修改编译选项,将/MD或/MDd 改为 /MT或/MTd,这样就实现了对VC运行时库的静态链接,在运行时就不再需要VC的dll了。
     
    在vc6下调用vs2005的动态链接库,开始弹出“没有找到MSVCR80D.dll”的对话框,
    安上述的第二种方法改行不通,安第一种方法会弹出如下文字的警示窗口
    An application has made an attempt to load the  C runtime library without using a manifest. This is an unsupported way to load Visual C++ DLLs. You need to modify your application to build with a manifest.
    for more information, see the "Visual C++ Libraries as Shared Side-by-Side Assemblies"topic in the product documentation.

  • 相关阅读:
    Lua Coroutine详解
    Lua IO库详解
    vue 组件基本使用
    js 发送异步请求
    小程序保存图片到相册
    js 学习四 对象应用 吃货游戏
    js 学习三 Array
    js 学习二 字符串常用方法
    js 学习一 猜数字游戏
    phpmyadmin导入大容量.sql文件
  • 原文地址:https://www.cnblogs.com/niuniu502/p/1125468.html
Copyright © 2011-2022 走看看