PDB was not found, link with no debug info

asked 2013-11-04 11:19:23 -0600

tstephens gravatar image

updated 2013-11-04 11:20:32 -0600

(a new user)

Sample program compiles, but there are a boatload of warnings of the type:

1>opencv_core246d.lib(alloc.obj) : warning LNK4099: PDB 'opencv_core246d.pdb' was not found with 'opencv_core246d.lib(alloc.obj)' or at 'c:\users\trevor\documents\visual studio 2012\Projects\vipsSample\Debug\opencv_core246d.pdb'; linking object as if no debug info

1>opencv_core246d.lib(arithm.obj) : warning LNK4099: PDB 'opencv_core246d.pdb' was not found with 'opencv_core246d.lib(arithm.obj)' or at 'c:\users\trevor\documents\visual studio 2012\Projects\vipsSample\Debug\opencv_core246d.pdb'; linking object as if no debug info

1>opencv_core246d.lib(array.obj) : warning LNK4099: PDB 'opencv_core246d.pdb' was not found with 'opencv_core246d.lib(array.obj)' or at 'c:\users\trevor\documents\visual studio 2012\Projects\vipsSample\Debug\opencv_core246d.pdb'; linking object as if no debug info

The sample program does run.

edit retag flag offensive close merge delete

Comments

don't worry too much about it. indeed, the pdb's are not supplied with the prebuild libs. (that would blow up the download to gigabytes).

you still can debug your own code, you just can't peek into the opencv libs while debugging.

if you still need them, rebuild the libs from src(cmake), this will generate the pdbs as well

berak gravatar imageberak ( 2013-11-04 12:15:42 -0600 )edit

Thanks. That was my guess, but this is day 1 with opencv.

tstephens gravatar imagetstephens ( 2013-11-04 17:38:31 -0600 )edit