Convert DBG into PDB?

亡梦爱人 提交于 2019-12-23 15:18:00

问题


i have a Win32 compiler which, for years, has been able to create a DBG debug information file.

This has allowed debuggers, and tools like Process Explorer and Process Monitor to have access to symbol information:

i recently learned that Visual Studio's debugger no longer accepts DBG files, only undocumented Program Database (PDB) files:

Since Microsoft keeps the PDB format secret, i assume they have a tool that will allow me to convert existing debugging information to a PDB (so i don't learn the secrets of their file format).

Bonus Reading

  • cv2pdb: how to use to convert other debug formats to pdb?

回答1:


PDB is not documented, but you can collect very detailed information about the content of PDB files programmatically using the appropriate interfaces See Sample



来源:https://stackoverflow.com/questions/9250379/convert-dbg-into-pdb

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!