4
« on: February 25, 2012, 10:16:56 pm »
I'm having a similar problem, but this has nothing to do with the audio, I'm not even using it.
I'm kind of hazy on VC++ details, I really need to get SFML running under VC++2010, because of the Kinect SDK (VS2010 only available)
I'm using VisualStudio 2010 Express and VisualStudio 2008 Express.
I first tried to just set up the directories and run the sample code, and got a lot of link errors on std:: calls, so I opened the SFML 2008 solution with 2010, and recompiled the dll and lib files.
After replacing them, I was able to compile and link. The Window.cpp (openGL rotating cube) sample runs OK, but I get these errors just when I run the program, either in debug or release configurations, the two lines at the bottom, after the **** are printed on shutdown, but everything before just as the app loads.
The OpenGL.cpp sample, doesn't load, it fails with a very similar output, but it fails (says app closed with code 1) (EDIT: I realized I was missing the data resources for this):
'sfml-setup.exe': Loaded 'C:\Users\Lacrymology\workspace\artsy\kinect\C++\sfml-setup\Release\sfml-setup.exe', Symbols loaded.
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\ntdll.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\kernel32.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\KernelBase.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\opengl32.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\msvcrt.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\advapi32.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\sechost.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\rpcrt4.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\sspicli.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\cryptbase.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\gdi32.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\user32.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\lpk.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\usp10.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\glu32.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\ddraw.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\dciman32.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\setupapi.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\cfgmgr32.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\oleaut32.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\ole32.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\devobj.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\dwmapi.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\winmm.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\msvcp100.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\msvcr100.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\imm32.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\msctf.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\nvinit.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\uxtheme.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\ig4icd32.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\version.dll', Cannot find or open the PDB file
'sfml-setup.exe': Unloaded 'C:\Windows\SysWOW64\version.dll'
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\dinput.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\hid.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\wintrust.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\crypt32.dll', Cannot find or open the PDB file
'sfml-setup.exe': Loaded 'C:\Windows\SysWOW64\msasn1.dll', Cannot find or open the PDB file
****
The thread 'Win32 Thread' (0xe5c) has exited with code 0 (0x0).
The program '[5524] sfml-setup.exe: Native' has exited with code 0 (0x0).
I don't know what I've got to do to use the provided external dlls (openal and libsndfile-1), and if there's anythin else I need to be doing.