当前位置: 代码迷 >> VC >> !一个很弱的有关问题:VS2010 cannot find or open the PDB file
  详细解决方案

!一个很弱的有关问题:VS2010 cannot find or open the PDB file

热度:5542   发布时间:2013-02-25 00:00:00.0
求救!一个很弱的问题:VS2010 cannot find or open the PDB file
刚学习C++,用VS2010编译最简单的Hello world:
#include <iostream>
int main()
{
using namespace std;
cout<<"Hello World!";
return 0;
}

出现以下问题:
“Test.exe”: 已加载“E:\visual studio 2010\Projects\Test\Debug\Test.exe”,已加载符号。
“Test.exe”: 已加载“C:\Windows\System32\ntdll.dll”,Cannot find or open the PDB file
“Test.exe”: 已加载“C:\Windows\System32\kernel32.dll”,Cannot find or open the PDB file
“Test.exe”: 已加载“C:\Windows\System32\KernelBase.dll”,Cannot find or open the PDB file
“Test.exe”: 已加载“C:\Windows\System32\msvcr100d.dll”,已加载符号。
程序“[1196] Test.exe: 本机”已退出,返回值为 0 (0x0)。
------最佳解决方案--------------------------------------------------------
对,不过是自动下载到c:\localsymbols目录。你也可以取别的目录名
------其他解决方案--------------------------------------------------------
创建目录c:\localsymbols
设一个系统环境变量
_NT_SYMBOL_PATH = symsrv*c:\localsymbols*http://msdl.microsoft.com/download/symbols
重启动VS2010
------其他解决方案--------------------------------------------------------
是不是从http://msdl.microsoft.com/download/symbols上下载symbol文件?
windonws symbol server ?
------其他解决方案--------------------------------------------------------
一楼给力!
------其他解决方案--------------------------------------------------------
我这么赶脚应该把using namespace std放到main函数前面去吗
------其他解决方案--------------------------------------------------------
我错了,无视我吧
  相关解决方案