Visual Build Professional 编译错误?
我正在使用 Visual Build Professional,步骤之一是“Make VS 2003”(C++ 项目)。但是,每次我收到以下错误:
fatal error C1033: 无法打开程序数据库 ''
如果我自己在 Visual Studio 中编译该项目,它可以正常工作。
有人知道为什么会这样,或者我该如何解决它?
I am using visual build professional and one of the steps is a 'Make VS 2003' (c++ project). However, every time I get the following error:
fatal error C1033: cannot open program database ''
If I compile the project myself in visual studios it works fine.
Anyone know why this would be, or how I can fix it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为过去当我有一个旧的 .pdb 文件(或因某种原因损坏的文件)时,我曾遇到过该错误。如果是这样,错误消息应指示它是哪个文件。您应该能够手动删除该文件。我认为它通常是
vc60.pdb
。msdn 上还有一些有关此错误的信息。
I think I have gotten that error in the past when I have an old .pdb file (or one that was somehow corrupted). If so, the error message should indicate which file it is. You should be able to manually delete that file. I think it has often been
vc60.pdb
.There is also some information about this error on msdn.