visual studio 2012 - MSVCR110d.dll couldn't be found although exists -
i have compiled program visual studio 2012 in debug version shared runtime library option, when send app friends, have alert, msvcr110d.dll couldn't found. strange, because attached file in app root directory.
what reason?
as explained here https://stackoverflow.com/a/10406852/1758762 ,
the debug version not redistributable, it's not simple "packaging" executable, or zipping dlls.
check sure you're compiling components of application in "release" mode, , you're linking correct version of crt , other libraries use (e.g., mfc, atl, etc.).
you will, of course, require msvcr100.dll (note absence of d suffix) , others if not installed. direct friends download visual c++ 2010 redistributable (or x64), or include application automatically building installer.
Comments
Post a Comment