可以事后构建调试符号吗?

发布于 2024-09-28 07:46:48 字数 184 浏览 3 评论 0原文

我们有数百个 MSVC 9.0 C++ 项目。一个 DLL 在没有正确的编译器/链接器设置来生成符号的情况下泄露到了公众面前,我们正在获取指向该 DLL 中异常的小型转储。我们有用于生成此 DLL 的确切源代码。可以编译它来生成我们可以用来调试这些转储的符号吗?如果是这样,我如何告诉 Windbg“即使时间戳不同,请为该 DLL 使用这些符号”?谢谢。

We have hundreds of MSVC 9.0 C++ projects. One DLL slipped out into the public without the correct compiler/linker settings to generate symbols, and we are getting mini-dumps back that point to an exception in this DLL. We have the exact source code used to generate this DLL. Can it be compiled to produce symbols that we can use to debug these dumps? If so, how do I tell windbg "please use these symbols for this DLL even though the timestamps will be different"? Thanks.

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

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

发布评论

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

评论(1

琉璃繁缕 2024-10-05 07:46:48

使用 .reload /i 命令加载不匹配的符号。

/i 忽略 .pdb 文件中的不匹配项
版本。 (如果不包括这个
参数,调试器不加载
不匹配的符号文件。)当您使用
/i, /f 也被使用,即使你这样做
没有明确指定。

华泰

Use the .reload /i command to load mismatch symbols.

/i ignores a mismatch in the .pdb file
versions. (If you do not include this
parameter, the debugger does not load
mismatched symbol files.) When you use
/i, /f is used also, even if you do
not explicitly specify it.

HTH

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