在 Windows 7 的命令行中必须输入什么命令来编译一个基本的 C 程序?
就像我真的想知道您在命令提示符中键入什么来编译 .c 文件。
我试过了:
> gcc foo.c
但它说:
'gcc' is not recognized as an internal or external command,
operable program or batch file.
我也试过:
> minGW foo.c
但我回来了:
'minGW' is not recognized as an internal or external command,
operable program or batch file.
我将路径环境变量设置为安装 MinGW 的位置:
C:\Program Files (x86)\CodeBlocks\MinGW\bin
我真的找不到任何关于我哪里出错的信息,也找不到官方 MinGW 文档中的任何内容,因为这似乎是一个如此简单、令人尴尬的问题,以至于人们知道是什么去做?