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?
Carl Daniel [VC++ MVP] - 14 Mar 2005 04:53 GMT
> The release build class library can only work with msvcr71d.dll and
> msvcp71d.dll exist. How to make this class library work on any
[quoted text clipped - 3 lines]
>
> 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
babyx - 14 Mar 2005 08:37 GMT
Thanks Carl~!
I just managed to solve this problem..... finally solved it...