关于vc8.0的编译问题
可以改一下编译选项 多线程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.
ZT VS2005的MSVCR80D.dll问题
Q: I've created a simple Win32 console application. When I try to debug it, I get the message:
"This application has failed to start because MSVCR80D.dll was not found. Re-installing the application may fix the problem."
我用VS2005新建了一个Win32的命令行程序,当用Debug模式时,会得到“没有找到MSVCR80d.dll,因此这个应用程序未能启动。重新安装程序可能会修复此问题”。
A:In the Visual Studio Project properties of the Manifest Tool, under General you can activate "Use FAT32 Work-around". Now everything works fine.
在VS2005的项目属性上,选择配置属性->清单工具->常规->使用FAT32解决办法,选择“是”。解决Debug模式下的问题。
#pragma once
#pragma message("FDraw.h --> Linking with ddraw.lib")
#pragma comment(lib,"ddraw.lib")