how can i deal with these outputs [closed]

asked 2014-05-29 12:35:40 -0600

Hm gravatar image

when i run my code i have these outputs

'mycode.exe': Loaded 'D:\Projects\mycodehend\mycodefinal\Release\mycode.exe', Symbols loaded.
'mycode.exe': Loaded 'C:\Windows\System32\ntdll.dll', Cannot find or open the PDB file
'mycode.exe': Loaded 'C:\Windows\System32\kernel32.dll', Cannot find or open the PDB file
'mycode.exe': Loaded 'C:\Windows\System32\KernelBase.dll', Cannot find or open the PDB file
'mycode.exe': Loaded 'D:\opencvhend\opencvh\build\x86\vc10\bin\opencv_core249.dll', Cannot find or open the PDB file
'mycode.exe': Loaded 'C:\Windows\System32\msvcp100.dll', Cannot find or open the PDB file
'mycode.exe': Loaded 'C:\Windows\System32\msvcr100.dll', Cannot find or open the PDB file
'mycode.exe': Loaded 'D:\opencvhend\opencvh\build\x86\vc10\bin\opencv_highgui249.dll', Cannot find or open the PDB file
'mycode.exe': Loaded 'C:\Windows\System32\user32.dll', Cannot find or open the PDB file
'mycode.exe': Loaded 'C:\Windows\System32\gdi32.dll', Cannot find or open the PDB file
'mycode.exe': Loaded 'C:\Windows\System32\lpk.dll', Cannot find or open the PDB file
'mycode.exe': Loaded 'C:\Windows\System32\usp10.dll', Cannot find or open the PDB file
'mycode.exe': Loaded 'C:\Windows\System32\msvcrt.dll', Cannot find or open the PDB file
'mycode.exe': Loaded 'C:\Windows\System32\ole32.dll', Cannot find or open the PDB file
'mycode.exe': Loaded 'C:\Windows\System32\rpcrt4.dll', Cannot find or open the PDB file
'mycode.exe': Loaded 'C:\Windows\System32\oleaut32.dll', Cannot find or open the PDB file
'mycode.exe': Loaded 'C:\Windows\System32\advapi32.dll', Cannot find or open the PDB file
'mycode.exe': Loaded 'C:\Windows\System32\sechost.dll', Cannot find or open the PDB file
'mycode.exe': Loaded 'C:\Windows\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.7601.18201_none_ec80f00e8593ece5\comctl32.dll', Cannot find or open the PDB file
'mycode.exe': Loaded 'C:\Windows\System32\avifil32.dll', Cannot find or open the PDB file
'mycode.exe': Loaded 'C:\Windows\System32\winmm.dll', Cannot find or open the PDB file
'mycode.exe': Loaded 'C:\Windows\System32\msacm32.dll', Cannot find or open the PDB file
'mycode.exe': Loaded 'C:\Windows\System32\msvfw32.dll', Cannot find or open the PDB file
'mycode.exe': Loaded 'C:\Windows\System32\shell32.dll', Cannot find or open the PDB file
'mycode.exe': Loaded 'C:\Windows\System32\shlwapi.dll', Cannot find or open the PDB file
'mycode.exe': Loaded 'C:\Windows\System32\avicap32.dll', Cannot find or open the PDB file
'mycode.exe': Loaded 'C:\Windows\System32\version.dll', Cannot find or open the PDB file
'mycode.exe': Loaded 'D:\opencvhend\opencvh\**strong text**build\x86\vc10\bin\opencv_imgproc249.dll', Cannot find or open the PDB file
'mycode.exe': Loaded 'C:\Windows\System32\imm32.dll', Cannot find or open the PDB file
'mycode.exe': Loaded 'C:\Windows\System32\msctf.dll', Cannot find or open the PDB file
The program '[4640] mycode.exe: Native' has exited with code 0 (0x0).
edit retag flag offensive reopen merge delete

Closed for the following reason the question is answered, right answer was accepted by sturkmen
close date 2020-10-04 15:50:58.605456

Comments

4

short answer: you just ignore them.

long answer: no, the pdb's are not supplied(download size).

that only means, that you can't jump into the opencv library code while debugging.

if you need that feature, recompile the whole schlepp (cmake), this will generate the pdbs as well.

berak gravatar imageberak ( 2014-05-29 12:41:42 -0600 )edit

ok i will take the short answer and ignore them

Hm gravatar imageHm ( 2014-05-30 03:19:06 -0600 )edit