如何获取同一文件夹中的所有 .pdb 文件?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我只使用 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.