c++ - What's the difference between msvcp120.dll and msvcp120_clr0400.dll? -
on project working on have access msvcp120_clr0400.dll
not msvcp120.dll
in run-time environment, same msvcr120.dll
and msvcp120_clr0400.dll
. (the dll's in syswow64)
there no way install visual c++ 2013 redistributable (where these dlls come from) because have limited package size distribution. cannot distrubute dlls ourselves licencing reasons copying , renaming each dll name of dll need on install works. hack far can tell these dlls have minimal differences.
copying , renaming dlls not ideal thinking of creating dll proxy using https://github.com/zerokilo/proxydllmaker , distributing proxy named original dll calls go dll know have in syswow64.
1. have more info on differences between these dlls? (does clr stand common language runtime in context perhaps?)
2. there alternative solution without installing visual c++ 2013 redistributable?
Comments
Post a Comment