Visual Studio 2013 msvcr120 to msvcr100

白昼怎懂夜的黑 提交于 2019-11-27 13:06:32

问题


Is it possible to change the restrib file to msvcr100 so other computers can run the program without having problems with the .dll file? If so how do i get that?

I do compile the program and other people can't use it because of the missing msvcr120.dll file. So it would be great if i could change that somehow.

Is it possible to install the Plattformtoolset without a older Visualstudio version?


回答1:


You have a few choices:

  1. Install VS2010 on the machine, and set the Platform Toolset option to v100.
  2. Install the Windows SDK v7.0A from here, which SHOULD / CAN add a new option to your Platform Toolset menu in VS2013. Getting this to work can be quite fiddly though. (It's rarely worked for me right out of the box). Note if you use MFC in your application, this option isn't any good for you - MFC libraries are not included with this SDK.
  3. Get your users to install the Microsoft VS 2013 C++ Redistributable Package from here, and carry on regardless.
  4. Statically link to the VS2013 runtimes, instead of using dynamic linking to the runtime DLLs. You can set this in the IDE through project settings under C/C++ > Code Generation > RunTime Library > Multi-threaded (/MT) or (/MTd). All the needed code will be compiled into your app, which will make the files bigger, but will avoid the issues you mention.



回答2:


In Project > Properties > General, there is a setting called Platform toolset. You can use that to change the version of the build toolchain used.




回答3:


One thing to consider in regards to changing the platform toolset: it changes the compiler, so C++ features newer than Visual Studio 2010 will not compile. It also requires the other version to be installed.

The best way to handle this would be to give them the Visual C++ Redistributable for Visual Studio 2013.

You could either have them do it themselves, or make an installer.



来源:https://stackoverflow.com/questions/19706421/visual-studio-2013-msvcr120-to-msvcr100

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!