带有 Visual C 的 Visual Studio 2010 IDE 6.0编译器?
我怎样才能做到这一点?我可以在 VS2010 IDE 中工作,但使用 VS C++ 6.0 编译器进行编译吗? 我可以在 VS2010 IDE 中工作并使用 VS2008 编译器进行编译吗?
How can I do that ? Can I work in VS2010 IDE but have it compile with the VS C++ 6.0 compiler?
And can I work in VS2010 IDE and have it compile by using the the VS2008 compiler ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您需要 Daffodil 扩展
you need the Daffodil extension
我知道使用 VS2008 IDE 可以实现这一目标,并且我 99% 确信它与 VS2010 相同(但我没有可以尝试的)。创建一个批处理文件,在其中首先需要调用 VC++ 6.0 附带的 VCVARS32.BAT 文件,然后使用“/useenv”开关启动 Visual Studio。然后,您将使用此批处理文件启动 Visual Studio。
.bat 文件:
注意:这是 VS2008 IDE 的路径,您需要自己更改 VS10 的路径(可能只需将数字 9 更改为数字 10)。此外,如果您使用 64 位操作系统,则需要更改两个路径以使用“Program Files (x86)”。
I know it is possible to achieve this with VS2008 IDE and I'm 99% sure it is the same with VS2010 (but I don't have one to try with). Make a batch file in which you first need to call VCVARS32.BAT file that is included with VC++ 6.0 and then start Visual Studio with "/useenv" switch. You will then use this batch file to start Visual Studio.
.bat file:
NOTE: This is path to VS2008 IDE, you need to change path for VS10 by yourself (probably just needs changing number 9 to number 10). Also if you are using 64bit OS you will need to change both paths to use "Program Files (x86)".
不可能吧
您可以使用 VS2010 C++ 编译器来编译 VS6 代码,不会出现任何问题。
注意解决方案将迁移为新格式(旧格式保存为备份)
Isn't possible.
You can use VS2010 C++ compiler to compile VS6 code w/o any problem.
take care about the solution will be migrated to new format (old one is saved as backup)
下面是关于 Visual Studio 2008 的链接,但您可以参考它在 Visual Studio 2010 上执行类似的步骤。
http://resnikb.wordpress.com/2009/10/28/using-visual-studio-2008-with-visual- c-6-0-编译器/
Here is link below which talks about visual studio 2008 but you can refer it to execute similar steps on visual studio 2010.
http://resnikb.wordpress.com/2009/10/28/using-visual-studio-2008-with-visual-c-6-0-compiler/