ATL 安全更新破坏了 DLL 的兼容性,具体取决于旧版本

发布于 2024-07-30 04:35:29 字数 282 浏览 2 评论 0原文

最近的 ATL 安全更新将 C++ 运行时更新为版本 8.0.50727.4053 。 不幸的是,此更新破坏了动态链接到运行时的 DLL 之一,因为我们在目标计算机上只有 8.0.50727.762 可用(我们甚至不使用 ATL)。

有没有办法让 Visual Studio 动态链接到旧的 DLL? 如果可能的话,我想避免静态链接。

The recent ATL security update updated the C++ runtimes to version 8.0.50727.4053. Unfortunately, this update broke one of our DLLs that dynamically links to the runtime, as we only have 8.0.50727.762 available to us on the target machine (we don't even use ATL).

Is there a way we can get Visual Studio to dynamically link to the older DLL? I'd like to avoid statically linking if possible.

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

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

发布评论

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

评论(3

最丧也最甜 2024-08-06 04:35:29

另一种解决方案是强制 VS 链接旧版本的 WinSxS DLL,如 这篇文章

Another solution is forcing VS to link against the old versions of the WinSxS DLLs as explained in this article.

慕巷 2024-08-06 04:35:29

将必需的 DLL 版本直接复制到可执行文件的目录中,在动态链接期间首先搜索它。

Copy the requisite DLL versions directly into your executable's directory, it is searched first during dynamic linking.

蘸点软妹酱 2024-08-06 04:35:29

我不知道这是否可行,但您是否尝试过让您的客户安装 可再发行包

I don't know if this is feasible but have you tried having your customers install the redistributable package?

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