如何使用符号在发布模式下构建 OpenSSL?
我通常通过这样做来构建我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
链接需要/DEBUG。
link needs /DEBUG.