Visual Studio 2013 msvcr120 to msvcr100

后端 未结 3 1203
萌比男神i
萌比男神i 2020-12-14 10:57

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 d

3条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-14 11:04

    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.

提交回复
热议问题