带有 Visual C 的 Visual Studio 2010 IDE 6.0编译器?

发布于 2024-09-09 02:45:23 字数 102 浏览 2 评论 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

呢古 2024-09-16 02:45:23

您需要 Daffodil 扩展

you need the Daffodil extension

乙白 2024-09-16 02:45:23

我知道使用 VS2008 IDE 可以实现这一目标,并且我 99% 确信它与 VS2010 相同(但我没有可以尝试的)。创建一个批处理文件,在其中首先需要调用 VC++ 6.0 附带的 VCVARS32.BAT 文件,然后使用“/useenv”开关启动 Visual Studio。然后,您将使用此批处理文件启动 Visual Studio。

.bat 文件:

call "C:\Program Files\Microsoft Visual Studio\VC98\Bin\VCVARS32.BAT"
start "" "C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\devenv.exe" /useenv

注意:这是 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:

call "C:\Program Files\Microsoft Visual Studio\VC98\Bin\VCVARS32.BAT"
start "" "C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\devenv.exe" /useenv

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)".

╄→承喏 2024-09-16 02:45:23

不可能吧

您可以使用 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)

混吃等死 2024-09-16 02:45:23

下面是关于 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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文