分析 DLL 清单中的 CRT 依赖关系

发布于 2024-11-02 03:36:40 字数 253 浏览 1 评论 0原文

我正在使用 Visual Studio 2005 构建 DLL。通过在文本编辑器中打开 DLL,我可以看到它引用了多个 MS CRT,如下所示。如何找到依赖元素引用的 DLL 的名称?我正在尝试专门查找链接到 8.0.50727.5592 版本的 CTR 的依赖项的来源,它是最后一个。

有什么想法吗?

<强>

I am using Visual Studio 2005 to build a DLL. By opening the DLL in a text editor I can see that it refers to multiple MS CRTs as follows. How can I find the name of DLL which the dependency elements refer to? I am trying to specifically find the source of the dependency which links to the 8.0.50727.5592 version of the CTR, it is the last one.

Any ideas?

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

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

发布评论

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

评论(3

奈何桥上唱咆哮 2024-11-09 03:36:40

最有可能的是,您会自动注入依赖项,因为您链接的第三方库使用与您正在使用的运行时版本不同的第三方库。检查您的 dll 链接的库,很可能其中之一将具有与您在那里完全相同的额外依赖项。顺便说一句,您可以使用VS2005打开一个dll并查看其嵌入的清单。

Most likely, you're getting the dependency injected automatically because you're linking against a 3rd party library that uses a different version of the runtime that you're using. Check the libraries against which your dll links and most likely one of them will have the exact extra dependency that you have there. By the way, you can use VS2005 to open a dll and look at its embedded manifest.

自控 2024-11-09 03:36:40

我知道这是一篇旧文章,但我遇到了同样的问题,并找到了一个很棒的工具来列出任何包含的库的所有依赖项。我使用 VS 2010:
在命令提示符下,转到 Microsoft Visual Studio 10.0\VC\bin 并运行命令:
链接 /dump /directives libpathandname.lib
这将列出所有链接器依赖项,包括确切的 CRT 版本。

I know it's an old post but I had the same issue and found a great tool to list all dependencies for any included libs. I use VS 2010:
In command prompt, go to Microsoft Visual Studio 10.0\VC\bin and run command:
link /dump /directives libpathandname.lib
This will list out all linker dependencies including exact CRT versions.

诗酒趁年少 2024-11-09 03:36:40

我不确定它是否会准确地告诉您在这种情况下需要什么,但是 Dependency Walker 可能会摆脱一些点亮它。它将显示哪些依赖 dll 依赖于 CRT,并且可能显示清单中的版本,但我不确定。

I'm not sure whether it will tell you exactly what you need in this instance, but Dependency Walker may shed some light on it. It'll show which of the dependent dlls depend on the CRT and it may show the versions from the manifests, though I'm not sure.

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