GCC 与 Visual Studio 一起使用吗?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
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.
请参阅线程"使用 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)
您可以使用 Visual Studio 的 Visual GDB 插件来简化 GCC 的工作
You can use Visual GDB add-in for Visual Studio that simplify work with GCC