静态链接到dll文件

发布于 2024-11-18 11:45:16 字数 271 浏览 1 评论 0 原文

我已经建立了一个项目,并在VS2010中运行它。

但如果我想在其他计算机上运行 .exe,却不能 安装Visual Studio,它将需要.dll文件(例如msvcrt.dll和 WINDOWS\SYSTEM32中的msvcp60.dll,以及其他一些dll 开发包)。我在这个项目中没有使用MFC。如何静态化 将所有这些 dll 链接到 Visual C++ 中的 .exe 文件中,这样我就不会 必须将所有dll复制到其他机器吗?

顺便说一句:我也不想制作安装包,

谢谢 西巴

I have already built a project, and run it in VS2010.

But if I want to run the .exe on other computers which does not
install Visual Studio, it will need .dll files (such as msvcrt.dll and
msvcp60.dll in WINDOWS\SYSTEM32, and some other dlls in the
development package). I didn't use MFC in this project. How to static
link all these dlls into the .exe file in Visual C++ so that I don't
have to copy all the dlls to the other machines?

BTW: I don't want to make install package either

Thanks
Siba

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

失而复得 2024-11-25 11:45:16

您可以将项目设置为静态链接 CRT,方法是使用 运行时库。或者,您可以保留 /MD 设置,并安装 vcredist 软件包和可执行文件(您可以从 此处,也可从您的 VS2010 安装文件夹之一)。要了解每个选项的优缺点,请阅读本文

哦,还有类似的问题之前问过...

You can set your project to statically link the CRT, by using the /MT flag for the runtime library. Or, you could keep the /MD setting, and install the vcredist package along with your executable (you can get it from here, and also from one of your VS2010 installation folders). To get an idea of each options pros and cons, read this.

Oh, and a similar question has been asked before...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文