C++调试问题 - pdb 文件
我的项目中有几个 DLL,它们被定义为在同一文件夹内创建它们的 *.pdb 文件(调试信息)。问题是该文件夹中实际存在的唯一 *.pdb 文件是属于最后编译的 DLL 的文件。结果我只能调试最后一个项目(每次编译都会删除文件夹中的所有 *.pdb 并创建当前编译的 DLL pdb 文件。)
我该如何解决这个问题? 我使用的是 Visual Studio 2003。
I have several DLLs in my project that are defined to create their *.pdb file (debug info) inside the same folder. The problem is that the only *.pdb file that actually exist inside this folder is the one that belongs to the last compiled DLL. As a result I can debug only the last project (each compilation deletes all the *.pdb in the folder and creates the current compiled DLL pdb file.)
How can I resolve it ?
I'm using Visual Studio 2003.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以从项目设置中的要删除的扩展中删除
*.pdb
,或者更好的是,使用不同的中间目录。这两个设置都位于配置属性 -> 一般。
You either remove
*.pdb
from Extensions to delete on clean in the project settings or, better, use different Intermediate Directories.Both settings are in Configuration Properties -> General.
或者您可以为程序版本创建单独的文件夹,并始终从最新的版本文件夹编译和执行您的程序。这样您还可以管理所有其他外部文件,例如图像等。
Or you can create separate folder for program releases, and always compile and execute your program from the newest release-folder. This way you can also manage all other external files like images and what not.