为什么 vcomp100.dll 没有包含在我的安装项目中?
如何在我的 Windows XP 机器上注册文件 vcomp100.dll
?我编译的 Visual C++ 程序似乎需要这个文件才能工作。
具有讽刺意味的是,当我使用 Visual Studio 安装程序的安装和部署工具时,为什么打包程序不在我的 setup.exe 中包含此 DLL?它似乎没有打包在安装程序可执行文件中。或者我必须手动添加它?
因为当我将安装程序文件传输到另一个 Windows XP 机器时,我的程序可以安装,但由于 vcomp.dll
而无法运行。
How do I register the file vcomp100.dll
on my Windows XP box? My compiled Visual C++ program seems to need this file in order to work.
Ironically, when I use Visual Studio Installer's Setup and Deployment Tool, why does the packager does not include this DLL inside my setup.exe? It doesn't seem to be packaged inside the installer executable. Or must I include it manually?
Because when I transfer the installer file to another Windows XP box, my program can install, but does not work because of the vcomp.dll
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否告诉 Visual Studio 您的应用程序依赖于 OpenMP 库?您不需要手动将任何 DLL 包含或复制到计算机中。
有关分步示例,请参阅 MSDN 上的此演练。
Have you told Visual Studio that your application depends on the OpenMP Library? You shouldn't need to include or copy any DLLs to the machine manually.
See this walkthrough on MSDN for a step-by-step sample.