在我看来,gcc 的 mingw wersion 忽略了 CFLAGS 环境变量。我对吗?怎么可能修好?
我做了以下工作:
创建简单的 test.c 文件
int main(int argc, char** argv) {
int a;
return 0;
}
并运行 mingw bash 提示符
$ export CFLAGS="-Wall"
$ gcc test.c <-- no warnings
$ gcc test.c -Wall
$ ... warning: unused variable 'a'