C++ class library release still require debug runtime dll

  • Thread starter Thread starter babyx
  • Start date Start date
B

babyx

The release build class library can only work with msvcr71d.dll and
msvcp71d.dll exist. How to make this class library work on any
machine without using the debug dlls? What are the project settings
that i need to take note so that it will become a "real" release
build without depending on the debug dll?

Can anybody help?
 
babyx said:
The release build class library can only work with msvcr71d.dll and
msvcp71d.dll exist. How to make this class library work on any
machine without using the debug dlls? What are the project settings
that i need to take note so that it will become a "real" release
build without depending on the debug dll?

Can anybody help?

Mekere sure EVERYTHING that's linked into your release mode DLL was compiled
as a release build. If you're still dependent on the debug DLLs, then
you're eaither looking at a debug build, or some mixture of debug and
release.

-cd
 
Back
Top