C++调试问题 - pdb 文件

发布于 2024-08-11 08:42:02 字数 199 浏览 7 评论 0原文

我的项目中有几个 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 技术交流群。

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

发布评论

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

评论(2

無處可尋 2024-08-18 08:42:02

您可以从项目设置中的要删除的扩展中删除*.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.

分開簡單 2024-08-18 08:42:02

或者您可以为程序版本创建单独的文件夹,并始终从最新的版本文件夹编译和执行您的程序。这样您还可以管理所有其他外部文件,例如图像等。

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.

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