Use VS2008 (v90) C++ toolset in VS2013?

前端 未结 2 845
不思量自难忘°
不思量自难忘° 2021-01-21 02:44

MS documentation explains how to use 2010 or 2012 toolsets in VS2013.

Does anyone know if there is also backwards support for the 2008 toolset? I am upgrading several pr

2条回答
  •  甜味超标
    2021-01-21 03:44

    The VS2008 install on its own doesn't properly setup the toolset directory/registry. This prevents later version of VS from locating the v90 tools.

    If you install the VS2010 C++ compiler toolset it will include the v90 toolset as well. After doing this I am able to build in VS2013 with the VS2008 toolset. This can be done by installing VS2010 itself or installing the Windows 7.1 SDK which includes the 2010 toolsets (v90 and v100).

    Reference: MSDN

提交回复
热议问题