VC++调试常见错误总结

Posted 老樊Lu码

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VC++调试常见错误总结相关的知识,希望对你有一定的参考价值。

1errorC2859 vc90.idb is not the idb file that was used when this precompiled headerwas created

     解决方法:选中工程-->点击右键属性-->ConfigurationProperties-->C/C++-->Output Files-->Program Database File Name中的$(IntDir)/vc90.pdb改为$(IntDir)/(工程名).pdb即可。

2Failedto return new code element.

    解决方法:关闭工程,删除工程中的.ncb文件,再重新打开工程即可。

3makesure that the file is not open by another process and is not write-protected

    解决方法:关闭工程,再重新打开即可。

    网上有的说:Tools-->Options-->Projectsand Solutions-->Builde and Run-->maximum number of parallelproject builds该为1即可,可是试试了并不起作用。

4add/removeoperation is impossible,because the code element ‘Cxxx‘ is read only
     
解决方法:关闭工程,删除工程中的.ncb.suo两个文件,再重新打开工程即可。

5errorC2471 cannot update program database …..debug\vc90.pdb

   解决方法:在属性配置里(1)C\C++-->General-->Debug Information format:改为C7 Compatible (/Z7)(2)C\C++-->Code Generation-->Enable String Pooling:改为Yes (/GF)(3)Linker-->Debuging-->GeneralDebug Info:改为Yes(/DEBUG)即可。

6Errorspawning ‘cmd.exe‘

  解决方法:Tools-->Options-->Projectsand Solutions-->VC++ Directories:点击New Line(类似文件夹图标)添加一行(cmd.exe所在目录)C:\WINDOWS\system32\OK即可。

7、断点调试时,出现thereis no source code available for the current location

   解决方法:Tools-->Options-->Debugging-->General-->Requiresource files to exactly match the original version前面的勾去掉即可。

 


以上是关于VC++调试常见错误总结的主要内容,如果未能解决你的问题,请参考以下文章

web常见错误提示总结

[C++] 常见编译运行错误总结

常见低级错误总结

java基础总结

VC++ 错误:错误 C1083:无法打开源文件:'=0x0401':没有这样的文件或目录

VSVS开发中遇到的问题的总结