在终端 Linux 中像 gcc 一样在 CMD 中编译 .c 程序?
在 中编译类似于
(gcc
(Linux
) 的 .c
/.cpp
文件的首选方法是什么>cmdWindows
)?最常见的编译器有哪些?
What is the preferred way to compile .c
/.cpp
files similar to gcc
(Linux
) in cmd
(Windows
)? What are the most common compilers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我从未使用过这个,但看起来它可能就是您正在寻找的。
http://www.mingw.org/
我认为大多数人都使用 Cygwin。
http://www.cygwin.com/
I've never used this but it looks like it might be what you're looking for.
http://www.mingw.org/
I think most people use Cygwin.
http://www.cygwin.com/
使用开发 C++。从他们的 网站:
Bloodshed Dev-C++ 是一个功能齐全的集成开发环境 (IDE),适用于C/C++ 编程语言。它使用 GCC(GNU 编译器集合)的 Mingw 端口作为编译器。 Dev-C++ 还可以与 Cygwin 或任何其他基于 GCC 的编译器结合使用。
它是一个 GUI 解决方案,但您也可以从 CMD 使用它。
另一种选择是自行下载 Cygwin 并尝试。
Use Dev C++. From their site:
Bloodshed Dev-C++ is a full-featured Integrated Development Environment (IDE) for the C/C++ programming language. It uses Mingw port of GCC (GNU Compiler Collection) as it's compiler. Dev-C++ can also be used in combination with Cygwin or any other GCC based compiler.
It is a GUI solution, however you can use it from CMD as well.
Another option is to download Cygwin by your self and try it.
本机 Windows 编译器是 Microsoft Visual C++,它也支持 C89。 Express Edition 是免费的(就像免费,不像开源),可以从这里下载
http://www.microsoft.com/visualstudio/en-us/products/2010-editions/visual-cpp-express
您可以从命令行或从集成开发环境下载中提供。
The native Windows compiler is Microsoft Visual C++, which also does C89. The Express Edition is free (like no cost, not like open source) to download from here
http://www.microsoft.com/visualstudio/en-us/products/2010-editions/visual-cpp-express
You can use it either from the command line or from the IDE provided in the download.