在 c/c++ 中发布产品的最佳实践是什么?在窗口中?

发布于 2024-09-24 17:43:34 字数 76 浏览 7 评论 0原文

我们知道PE二进制文件通常依赖于各种动态链接库来工作,但是我们如何确保所有用户都存在这样的dll呢?

PE产品如何发布?

As we know a PE binary usually depends on various Dynamic Link Library to work, but how can we make sure such a dll exists for all users?

How is a PE product released?

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

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

发布评论

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

评论(1

三生一梦 2024-10-01 17:43:34

这取决于 DLL。不幸的是,Windows 对于共享依赖关系来说很糟糕(特别是与 GNU/Linux 等系统相比)。确保您拥有正确的 DLL 的唯一可靠方法是将它们与可执行文件一起提供。如果您正在进入要安装到系统文件夹的库,并且您怀疑那里可能已经有副本(可能是与您的版本不同的版本),请阅读有关清单和并排程序集的信息。

It depends on the DLL. Unfortunately, Windows is terrible for shared dependencies (especially compared to systems like GNU/Linux). The only sure-fire way to ensure that you have the correct DLLs is to ship them with your executable. If you're getting into libraries that you want to install to the system folder and you suspect that there might already be copies there, possibly of a different version than yours, read about manifests and side-by-side assemblies.

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