现在的位置: 首页 > 综合 > 正文

VS2008常见错误

2013年01月24日 ⁄ 综合 ⁄ 共 757字 ⁄ 字号 评论关闭
文章目录

error C2471: cannot update program database vc90.pdb

官方现有解决方案如下:

       I have found an alternate way for the time beging to avoid C2471 error but it works only in the case of successful release build.

      for this click Build menu than Configuration manager than create a new setting from release settings. Change following things in your project settings as :


C\C++ | General | Debug Information format | C7 Compatible (/Z7)

C\C++ | Code Generation | Enable String Pooling | Yes (/GF)

Linker |Debuging |General Debug Info | Yes (/DEBUG)

        after these settings. Rebuild your application. I'm sure you will be able to resolve the pdb updation issue if it is really not hampering your other settings. Hope it will be helpful to you.

解决方案:修改项目属性 右击项目 --> "属性”

1. “C/C++” --> "常规” -->”调试信息格式” 设置为 “C7 兼容(/Z7)”

2. “C/C++” --> "代码生成” -->”启用字符串池” 设置为 “是(/GF)”

3. “链接器” --> "调试” -->”生成调试信息” 设置为 “是(/DEBUG)”

抱歉!评论已关闭.