Ask Your Question

tstephens's profile - activity

2013-11-04 17:38:31 -0600 commented question PDB was not found, link with no debug info

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

2013-11-04 11:19:23 -0600 asked a question PDB was not found, link with no debug info

(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.

2013-11-04 11:16:05 -0600 commented answer vs 2012 express opencv configuration issue

Sure. thanks

2013-11-04 09:04:13 -0600 received badge  Editor (source)
2013-11-04 09:01:47 -0600 answered a question vs 2012 express opencv configuration issue

I had 285 Errors in the link, but after switching the "Runtime library" option from "Multi-threaded Debug DLL (/MDd)" to "Multi-threaded Debug (/MTd)", then I had only 133 Errors.

Then, after adding 6 more libraries from the same staticlib directory...

ilmimfd.lib libjasperd.lib libjpegd.lib libpngd.lib libtiffd.lib zlibd.lib

...and 2 more libraries that come from windows...

comctl32.lib vfw32.lib

...it now 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 now though.

2013-11-04 07:49:30 -0600 answered a question vs 2012 express opencv configuration issue

I have the same issue. Tried to build with the x64 under Win32/x86. Then I switched it, but get many of the following errors:

Error 1 error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MTd_StaticDebug' doesn't match value 'MDd_DynamicDebug' in vipsSample.obj c:\Users\Trevor\documents\visual studio 2012\Projects\vipsSample\vipsSample\opencv_core246d.lib(alloc.obj) vipsSample

I know that there must be some VC switch to change "MD" to "MT", but I cannot find it.

Any help would be appreciated.