如何获取同一文件夹中的所有 .pdb 文件?

发布于 2024-08-11 13:36:53 字数 278 浏览 8 评论 0原文

我在 Visual Studio 2008 中有一个解决方案,它有几十个项目。

我想将所有 pdb 放在同一个文件夹中。

从项目的属性页中,我看到 pdb 将转到“中间目录”; .obj 文件也转到“中间目录”。

我们的每个项目都有自己的文件夹,因为我们希望将 .obj 分开,同时我希望将所有 pdb 放在同一个文件夹中。

查看 buildlog.htm 我看到控制 pdb 路径的选项 /PDB,在我看来,该选项在属性页中不可用。

也许我必须使用构建后脚本?

I have a solution in Visual Studio 2008, it has dozens of projects.

I would like to have all the pdb in the same folder.

From the property page of a project I see that the pdb will go to the "Intermediate Directory"; also .obj files go to the "Intermediate Directory".

Each of our projects has its own folder because we want to keep the .obj separated, at the same time I would like to have all the pdb in the same folder.

Looking at the buildlog.htm I see the option /PDB which controls the pdb path, this option doesn't seem to me available in the property page.

Maybe I will have to use a post buil script?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

且行且努力 2024-08-18 13:36:53

我只使用 Visual Studio 2005,但这里的 PDB 路径是通过链接器属性选项卡 -> 控制的。 调试 ->创建程序数据库。

这里的路径默认为 $(TargetDir)$(TargetName).pdb ,这是输出(二进制)所在的目录。
您确定没有将其与编译器混合使用吗? 输出选项?您在那里设置的 PDB 路径仅适用于预编译头。

I'm only using Visual Studio 2005, but here the PDB path is controlled via the Linker Property Tab -> Debugging -> create program data base.

The path here defaults to $(TargetDir)$(TargetName).pdb and that is the directory where your output (binary) goes to.
Are you sure, you didn't mix that with the Compiler -> Output options? the PDB Path you set there is only for the precompiled headers.

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