Debug or Release?

  • Thread starter Thread starter Havatcha
  • Start date Start date
H

Havatcha

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?
 
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
 
redec said:
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.
 
Back
Top