hustwcw 发表于 2013-1-26 15:03:01

关于VS2008下提示找不到MSVCP90D.dll的解决办法

在Google和百度上都没有找到中文的解决办法,在微软官网上找到了,现在贴出来供大家参考。
went to "Project | Game Properties | Configuration Properties | C/C++ | Code Generation | Runtime Library"
and set Multi-threaded Debug (/MTd)
did build generated error messages...
then reset
"Project | Game Properties | Configuration Properties | C/C++ | Code Generation | Runtime Library"
to
Multi-threaded Debug DLL (/MDd)
what it was originally, worked.

中文:选择菜单"Project | (解决方案名) Properties | Configuration Properties | C/C++ | Code Generation | Runtime Library",设置Runtime Library为Multi-threaded Debug (/MTd)然后构建,会产生很多错误。
构建后将Runtime Library重新设置为Multi-threaded Debug DLL (/MDd)。这样就行了。
页: [1]
查看完整版本: 关于VS2008下提示找不到MSVCP90D.dll的解决办法