如何在 Windows 的命令行中使用 MinGW 编译器?
Posted
技术标签:
【中文标题】如何在 Windows 的命令行中使用 MinGW 编译器?【英文标题】:How do I use the MinGW compiler from the command line on Windows? 【发布时间】:2013-11-14 14:18:17 【问题描述】:我已经在我的 Windows 7 机器上安装了 Bloodshed Dev-C++ 编译器。现在如何从命令行编译?
【问题讨论】:
【参考方案1】:文件main.cpp:
int main()
return 0;
编译:
g++ -Wall main.cpp -o main
MinGW 的bin
文件夹必须在路径环境变量中,对于 g++,有很多关于如何使用它的文档。据我所知,g++/MinGW 和 Linux 中的 g++ 没有区别,所以任何 Linux 教程都可以在 Windows 上运行。
【讨论】:
没错。必须更新路径环境变量。它在安装过程中没有完成。以上是关于如何在 Windows 的命令行中使用 MinGW 编译器?的主要内容,如果未能解决你的问题,请参考以下文章
在windows平台如何用MinGW编译工程?工程中有Makefile.an和Makefile.in文件,要输入啥命令呢?
如何在 Windows 命令行中使用参数运行 Python 脚本