Redistributables for deploying C++ exe developed with Visual Studio 2015 on Windows 7

前端 未结 3 1670
感动是毒
感动是毒 2020-12-03 21:04

I have developed a 32-bit C++ application using Visual Studio 2015 (on Windows 10). I want to deploy it onto machines running Windows 7 and later.

I put together a W

3条回答
  •  爱一瞬间的悲伤
    2020-12-03 21:52

    The VC++ runtime redistributables got more complicated in Visual Studio 2015. See the VC team blog post about the universal CRT. Basically, the merge module is insufficient:

    There will not be a merge module for the Universal CRT. If you currently use the CRT merge modules and still want to deploy the Visual C++ libraries centrally, we recommend that you move to the above mentioned Windows Update package or to the VCRedist. Alternatively, you may choose to link statically to the Universal CRT and the Visual C++ libraries.

提交回复
热议问题