Difference between Release & Debug

I am trying to write a fairly simple ActiveX using C ++ code. The problem is that the binary version of Release has a dependency on MFC90.DLL and MSVCR90.DLL, which does not appear in Debug. How to attack this?

+5
source share
2 answers

You can try statically linking MFC and C ++ runtime libraries, which may be desirable because then you don’t have to hope that users will have the redistributable VC ++ components installed.

Or you can install redistributable VC ++ distributions that will install these shared libraries.

, DLL CAB ( , -), , .

+3

- DLL /libs, , .

, ?

+1

All Articles