DDK 生成的过时 PDB 文件
我在 VS.NET 2002 (C++) 中有一个非常简单的应用程序,它从 DLL 调用函数。 DLL 是使用 WINDDK 构建的,并且 MSC_OPTIMIZATION 设置为 /Od /Oi
当我尝试从 DLL 进入导出函数时,它失败了。然后,我尝试从 WINDDK(XP 检查环境)生成的 PDB 文件中加载符号,但收到“pdb 格式已过时”消息。
PDB文件是“Microsoft C/C++ MSF 7.00”
VS.NET 2002能否读取这个PDB文件,即。也许是旧的/新的?
问候 奥利弗
I have a very simple application in VS.NET 2002 (C++) that calls a function from a DLL. The DLL is built with WINDDK and MSC_OPTIMIZATION is set to /Od /Oi
When I try to step into the exported function from the DLL it fails. I then tried to load the symbols from the PDB file generated by WINDDK (XP Checked environment), but I get the "pdb format is obsolete" message.
The PDB file is "Microsoft C/C++ MSF 7.00"
Can VS.NET 2002 read this PDB file, ie. is it perhaps to old/new ?
Regards
Oliver
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
7.00 是原始 VS.NET 的 Visual C++ 版本号,因此我希望调试器能够使用它生成的 PDB 文件。
我认为您还必须向编译器提供类似 /Zi 的内容,并向链接器提供适当的开关才能获取 PDB 调试符号。
7.00 is the Visual C++ version number for the original VS.NET so I would expect the debugger to be able to use PDB files generated by it.
I think you also have to provide something like /Zi to the compiler and the appropriate switch to the linker to get PDB debug symbols.