c++ - 使用VS2010作为IDE,使用MSVC 2005作为编译器

标签 c++ visual-studio

我想使用 VS2010 和 IDE 并使用 MSVC 2005 作为编译器,我该怎么做?

最佳答案

Visual Studio 2010 包含使用 Platform Toolset 的多 objective-c ++ 项目( native 或托管)的功能。选项。内置支持 v100 (VS2010) 和 v90 (VS2008)。

参见:C++ Native Multi-Targeting其中展示了如何扩展该功能以支持 v80 (VS2005)。

查看这些special MSDN instructions对于托管项目。

关于c++ - 使用VS2010作为IDE,使用MSVC 2005作为编译器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7370063/

相关文章:

c++ - 如何约束模板化 constexpr 递归函数输入参数

.net - 在项目属性中找不到 C/C++

c# - VS2017中的MVC 3错误: The name 'ViewData' does not exist in the current context

c# - 从命令行在 2017 Visual Studio 中构建项目?

vb.net - 表单 keyDown 不起作用?

c++ - 类成员未附加 c++

c++ - 3D 和 UI 工具包

c++ - boost::prim_minimum_spanning_tree 中意外的负边权重错误

c++ - 在 visual studio 2015 community c++ 中,如何修复警告 C4838 : conversion from 'unsigned int' to 'int' requires a narrowing conversion

c++ - GotW #101 "solution"真的能解决什么问题吗?