1

按照本教程,我成功运行 build-win32.bat 并为 cocos2dx 构建了 Visual Studio 2010 解决方案。但是我无法运行 HelloCPP.exe、HelloLua.exe、testcpp.exe 等。

我正在使用最新的 cocos2dx (cocos2d-2.0-x-2.0.2),运行 windows 7 64bit 并且一直在安装 PowerVR Insider SDK。

当我尝试从 Visual Studio 2010(终极版)运行 HelloCpp 和 HelloLua 时,调试器在 CCGLProgram.cpp 处中断:

bool CCGLProgram::initWithVertexShaderByteArray(const GLchar* vShaderByteArray, const GLchar* fShaderByteArray)
{
    m_uProgram = glCreateProgram();

错误消息是:(显示在 VS 2010 的调试控制台中)

'HelloCpp.exe': Loaded 'D:\cocos2d-2.0-x-2.0.2\Release.win32\HelloCpp.exe', Symbols loaded.
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\ntdll.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\kernel32.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\KernelBase.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'D:\cocos2d-2.0-x-2.0.2\Release.win32\libcocos2d.dll', Symbols loaded.
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\msvcr100.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\opengl32.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'D:\cocos2d-2.0-x-2.0.2\Release.win32\glew32.dll', Binary was not built with debug information.
'HelloCpp.exe': Loaded 'D:\cocos2d-2.0-x-2.0.2\Release.win32\libxml2.dll', Binary was not built with debug information.
'HelloCpp.exe': Loaded 'D:\cocos2d-2.0-x-2.0.2\Release.win32\zlib1.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'D:\cocos2d-2.0-x-2.0.2\Release.win32\libtiff.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'D:\cocos2d-2.0-x-2.0.2\Release.win32\pthreadVCE2.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\user32.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\gdi32.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\advapi32.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\shell32.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\msvcp100.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\msvcrt.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\glu32.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\ddraw.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\wsock32.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'D:\cocos2d-2.0-x-2.0.2\Release.win32\iconv.dll', Binary was not built with debug information.
'HelloCpp.exe': Loaded 'C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6871_none_50944e7cbcb706e5\msvcr90.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\sechost.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\rpcrt4.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\combase.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\shlwapi.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\dciman32.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\ws2_32.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\sspicli.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\nsi.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\cryptbase.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\bcryptprimitives.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\imm32.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\msctf.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\uxtheme.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\dwmapi.dll', Cannot find or open the PDB file
'HelloCpp.exe': Loaded 'C:\Windows\SysWOW64\ole32.dll', Cannot find or open the PDB file
Not totally ready :( 

OpenGL 2.0 not supported

First-chance exception at 0x00000000 in HelloCpp.exe: 0xC0000005: Access violation.
Unhandled exception at 0x00000000 in HelloCpp.exe: 0xC0000005: Access violation.
4

1 回答 1

0

我不知道什么是 PowerVR Insider SDK。如果你已经在 msvc 中加载了整个 cocos2d 解决方案,你将无法运行它,而是右键单击一个项目并 debug->startnewinstance ,项目运行。如果您想单独打开,exe 位于 Release.win32 或 debug.win32。

于 2012-09-17T08:37:43.853 回答