首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >SDL安装visual studio

SDL安装visual studio
EN

Stack Overflow用户
提问于 2013-02-11 07:48:30
回答 2查看 2.3K关注 0票数 0

我正在尝试为Visual StudioSDL2010Express设置C++,但在运行一个简单的程序时,我经常收到以下错误

代码语言:javascript
复制
    #include "SDL.h"

int main(int argc, char* args[] ) {
    //Start SDL
    SDL_Init(SDL_INIT_EVERYTHING);

    SDL_Quit();
    return 0;
}

然后我得到了以下错误

代码语言:javascript
复制
'SDLtest.exe': Loaded 'C:\Users\Sean Kwon\Desktop\c++_programs\SDLtest\Debug\SDLtest.exe', Symbols loaded.
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\ntdll.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\kernel32.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\KernelBase.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\SDL.dll', Binary was not built with debug information.
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\advapi32.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\msvcrt.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\sechost.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\rpcrt4.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\sspicli.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\cryptbase.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\gdi32.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\user32.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\lpk.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\usp10.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\winmm.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\msvcr100.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\imm32.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\msctf.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\ddraw.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\dciman32.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\setupapi.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\cfgmgr32.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\oleaut32.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\ole32.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\devobj.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\dwmapi.dll', Cannot find or open the PDB file
'SDLtest.exe': Unloaded 'C:\Windows\SysWOW64\ddraw.dll'
'SDLtest.exe': Unloaded 'C:\Windows\SysWOW64\dwmapi.dll'
'SDLtest.exe': Unloaded 'C:\Windows\SysWOW64\setupapi.dll'
'SDLtest.exe': Unloaded 'C:\Windows\SysWOW64\devobj.dll'
'SDLtest.exe': Unloaded 'C:\Windows\SysWOW64\oleaut32.dll'
'SDLtest.exe': Unloaded 'C:\Windows\SysWOW64\ole32.dll'
'SDLtest.exe': Unloaded 'C:\Windows\SysWOW64\cfgmgr32.dll'
'SDLtest.exe': Unloaded 'C:\Windows\SysWOW64\dciman32.dll'
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\uxtheme.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\dwmapi.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\KBDUS.DLL', Cannot find or open the PDB file
'SDLtest.exe': Unloaded 'C:\Windows\SysWOW64\KBDUS.DLL'
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\KBDUS.DLL', Cannot find or open the PDB file
'SDLtest.exe': Unloaded 'C:\Windows\SysWOW64\KBDUS.DLL'
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\dsound.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\ole32.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\powrprof.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\setupapi.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\cfgmgr32.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\oleaut32.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\devobj.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\dinput.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\hid.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\wintrust.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\crypt32.dll', Cannot find or open the PDB file
'SDLtest.exe': Loaded 'C:\Windows\SysWOW64\msasn1.dll', Cannot find or open the PDB file
The thread 'Win32 Thread' (0x15e4) has exited with code 0 (0x0).
The thread 'Win32 Thread' (0x150c) has exited with code 0 (0x0).
The program '[5584] SDLtest.exe: Native' has exited with code 0 (0x0).

我在我的Syswow64文件夹中添加了.dll文件夹,但仍然收到相同的错误...

EN

回答 2

Stack Overflow用户

发布于 2013-02-13 09:18:35

您的代码已成功执行,并返回0。

“无法找到或打开PDB文件”对于大部分零件,您可以放心地忽略这些警告。这些警告意味着编译器找不到列出的dll的调试信息。这用于加载外部依赖项的符号,例如IDE内部链接的符号或OS API使用的符号,在程序中的基本调试通常不需要这些符号。

有关设置和使用these tutorials的更多帮助,请尝试使用SDL或参考SDL文档。

票数 1
EN

Stack Overflow用户

发布于 2015-09-30 16:14:05

找不到PDB文件,这意味着您需要获取它们。

工具->选项->调试->符号

检查“Microsoft Symbol Server”以加载您缺少的符号。

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/14804023

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档