Ask Your Question
1

Errors in visual c++

asked 2013-02-08 02:09:23 -0600

project_310 gravatar image

Hello I am trying to integrate the opencv libraries to the ms visual c++ 2010 . After a lot of efforts the libraries are loaded witht hte help of the youtube video , but now another bunch of errors regarding missing dll files show up. I tried same method on different laptop ...same problem !

ERRORS :

'pks1.exe': Loaded 'C:\Users\Eternity\Documents\Visual Studio 2010\Projects\pks1\Debug\pks1.exe', Symbols loaded. 'pks1.exe': Loaded 'C:\Windows\System32\ntdll.dll', Cannot find or open the PDB file 'pks1.exe': Loaded 'C:\Windows\System32\kernel32.dll', Cannot find or open the PDB file 'pks1.exe': Loaded 'C:\Windows\System32\KernelBase.dll', Cannot find or open the PDB file 'pks1.exe': Loaded 'E:\opencv243\build\x86\vc10\bin\opencv_core243.dll', Cannot find or open the PDB file 'pks1.exe': Loaded 'C:\Windows\System32\msvcp100.dll', Cannot find or open the PDB file 'pks1.exe': Loaded 'C:\Windows\System32\msvcr100.dll', Cannot find or open the PDB file 'pks1.exe': Loaded 'E:\opencv243\build\x86\vc10\bin\opencv_highgui243.dll', Cannot find or open the PDB file 'pks1.exe': Loaded 'C:\Windows\System32\user32.dll', Cannot find or open the PDB file 'pks1.exe': Loaded 'C:\Windows\System32\gdi32.dll', Cannot find or open the PDB file 'pks1.exe': Loaded 'C:\Windows\System32\lpk.dll', Cannot find or open the PDB file 'pks1.exe': Loaded 'C:\Windows\System32\usp10.dll', Cannot find or open the PDB file 'pks1.exe': Loaded 'C:\Windows\System32\msvcrt.dll', Cannot find or open the PDB file 'pks1.exe': Loaded 'C:\Windows\System32\ole32.dll', Cannot find or open the PDB file 'pks1.exe': Loaded 'C:\Windows\System32\rpcrt4.dll', Cannot find or open the PDB file 'pks1.exe': Loaded 'C:\Windows\System32\oleaut32.dll', Cannot find or open the PDB file 'pks1.exe': Loaded 'C:\Windows\System32\advapi32.dll', Cannot find or open the PDB file 'pks1.exe': Loaded 'C:\Windows\System32\sechost.dll', Cannot find or open the PDB file 'pks1.exe': Loaded 'C:\Windows\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.7601.17514_none_ec83dffa859149af\comctl32.dll', Cannot find or open the PDB file 'pks1.exe': Loaded 'C:\Windows\System32\avifil32.dll', Cannot find or open the PDB file 'pks1.exe': Loaded 'C:\Windows\System32\winmm.dll', Cannot find or open the PDB file 'pks1.exe': Loaded 'C:\Windows\System32\msacm32.dll', Cannot find or open the PDB file 'pks1.exe': Loaded 'C:\Windows\System32\msvfw32.dll', Cannot find or open the PDB file 'pks1.exe': Loaded 'C:\Windows\System32\shell32.dll', Cannot find or open the PDB file 'pks1.exe': Loaded 'C:\Windows\System32\shlwapi.dll', Cannot find or open the PDB file 'pks1.exe': Loaded 'C:\Windows\System32\avicap32.dll', Cannot find or open the PDB file 'pks1.exe': Loaded 'C:\Windows\System32\version.dll', Cannot find or open the PDB file 'pks1.exe': Loaded 'C:\Windows\System32\msvcp100d.dll', Symbols loaded. 'pks1.exe': Loaded 'C:\Windows\System32\msvcr100d.dll', Symbols loaded. 'pks1.exe': Loaded 'C:\Windows\System32\imm32.dll ... (more)

edit retag flag offensive close merge delete

1 answer

Sort by ยป oldest newest most voted
2

answered 2013-02-08 02:57:32 -0600

berak gravatar image

that's runtime warnings, not actual error, right ?

it seems, you're using the prebuilt binaries, and they come in fact without the corresponding pdb files (they are probably too large).

you can still run, and even debug your program. only thing you cannot do without the pdb's is jump into the library code with the debugger.

if you really need to do that / can't live without pdb's, rebuilding the binaries using cmake will produce dlls/pdbs in bin/debug

edit flag offensive delete link more

Comments

yes , codes work without any problem ...just warnings Thanks.

project_310 gravatar imageproject_310 ( 2013-02-13 05:11:40 -0600 )edit

Question Tools

Stats

Asked: 2013-02-08 02:09:23 -0600

Seen: 537 times

Last updated: Feb 08 '13