C++ class library release still require debug runtime dll

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?
 
C

Carl Daniel [VC++ MVP]

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top