GCC 与 Visual Studio 一起使用吗?

发布于 2024-07-08 02:08:48 字数 129 浏览 6 评论 0原文

在 Visual Studio 2008 中使用 GCC 而不是 VC++ 有多难? 显然,有些关键字不会匹配,有些关键字可能无法获得语法突出显示(除非您创建了新的语言服务)。

这就是“makefile 项目”的用途吗?

How hard would it be to use GCC instead of VC++ from within Visual Studio 2008? Obviously, some of the keywords won't match, and some may not get syntax highlighting (unless you made a new language service).

Is this what a 'makefile project' is for, pretty much?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

醉南桥 2024-07-15 02:08:48

Visual Studio 没有像 Intel C++ 那样的 GCC 插件,它允许使用 Intel 编译器作为 Visual C++ 的直接替代品。

您可以使用 Makefile 项目,它允许您使用任何您喜欢的外部工具(make、SCons、jam 等等)来进行构建。 如果您不喜欢 Makefile,您可能需要查看 CMake,它允许您生成 Makefile 或 Visual Studio 项目从一个更简单的描述。 这也意味着您不受 Makefile 或 Visual Studio 项目的约束,而是可以根据需要在它们之间切换。

There is no GCC plugin for Visual Studio as the one for example for Intel C++, which allows Intel's compiler to be used as a drop-in replacement for Visual C++.

You can use Makefile projects which allows you to use any external tool you like (make, SCons, jam, whatever) to do your build. If you don't like Makefiles, you may want to look at CMake which allows you to generate Makefiles or Visual Studio projects from a much simpler description. This also means that you're not bound to Makefiles or Visual Studio projects, but can switch between them as you like.

So尛奶瓶 2024-07-15 02:08:48

请参阅线程"使用 gcc 端口通过 Visual Studio 构建程序”,在 MSDN 论坛中进行类似讨论。

您可以使用 makefile,也可以使用 WinGDB 以获得更好的集成(包括 调试

See the thread "Use a gcc port to build programs with Visual Studio" in MSDN's forums for similar discussion.

You can use makefiles and also use WinGDB for better integration (including debugging)

刘备忘录 2024-07-15 02:08:48

您可以使用 Visual Studio 的 Visual GDB 插件来简化 GCC 的工作

You can use Visual GDB add-in for Visual Studio that simplify work with GCC

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