一、概要
官网: http://www.mingw.org/ 下载安装地址: http://sourceforge.net/projects/mingw/files/ 下载 Installer 下面的 mingw-get-setup.exe
下载之后运行即可,这个是 获取安装包的 程序。
二、
之后,便可选择安装 GCC,GCC++,JAVA,Object-C 等编译器。
安装之后(默认安装路径 C:\MinGW\bin) ,便会看到很多 EXE 及 DLL 文件。然后将 C:\MinGW\bin 添加至 系统PATH
D:\>gcc --version gcc (GCC) 4.8.1 Copyright (C) 2013 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
说明已经安装成功。
然后简单测试。
D:\>vim a.c
#include <stdio.h> int main(){ printf("hello world!"); return 0; }
# 编译 D:\>gcc a.c # 执行 D:\>a.exe hello world! D:\>
时间: 2024-10-29 19:05:55