如何使用符号在发布模式下构建 OpenSSL?

发布于 2024-07-17 12:38:43 字数 320 浏览 5 评论 0原文

我通常通过这样做来构建我的 openssl 库:

perl Configure VC-WIN32
ms\do_masm 
nmake -f ms\ntdll.mak 
nmake -f ms\ntdll.mak test

为了调试小型转储,我想获取 2 个 dll 的 pdb 文件(同时仍然以“发布”模式构建它们)。 我已将 /Zi 添加到 ms\ntdll.mak 的 CFLAGS 部分,但当我在 Visual Studio 调试器中查看内存中模块时,仍然收到“二进制文件不是使用调试信息构建的”。 我是不是少了一步?

谢谢

I generally build my openssl libs by doing this:

perl Configure VC-WIN32
ms\do_masm 
nmake -f ms\ntdll.mak 
nmake -f ms\ntdll.mak test

For debugging minidumps, I'd like to get a pdb file for the 2 dlls (while still building them in "release" mode). I've added /Zi to the CFLAGS part of ms\ntdll.mak, but I still get "Binary was not built with debug information" when I look at the in-memory modules in the visual studio debugger. Am I missing a step?

Thanks

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

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

发布评论

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

评论(1

清风无影 2024-07-24 12:38:43

链接需要/DEBUG。

link needs /DEBUG.

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