I am having some difficulties with mixed Release / Debug versions of
various libraries. In order to sort this out, I need to know if the
libraries were built using the Debug or Release dlls originally. Is
there a simple way to do this?
redec - 06 Nov 2007 18:37 GMT
well...if you're talking about dlls then you can open them up with
depends.exe and if it depends on msvcr??d.dll then it's a debug build.....if
it's msvcr??.dll then it's a release build....I'd imagine you could use
dumpbin to extract this same info out of a .lib
Havatcha - 07 Nov 2007 11:42 GMT
> well...if you're talking about dlls then you can open them up with
> depends.exe and if it depends on msvcr??d.dll then it's a debug build.....if
> it's msvcr??.dll then it's a release build....I'd imagine you could use
> dumpbin to extract this same info out of a .lib
Thanks.