gcc -Wall選項標誌

gcc -Wall啟用所有編譯器的警告消息。為了生成更好的代碼,應始終使用此選項。

句法

$ gcc -Wall [options] [source files] [object files] [-o output file]

編寫源文件myfile.c

// myfile.c
#include <stdio.h/

int main()
{
    printf("Program run!\n");
    int i=10;
}

 

常規構建myfile.c不會顯示任何消息:

$ gcc myfile.c -o myfile
$

 

使用-Wall構建myfile.c

$ gcc -Wall myfile.c -o myfile
myfile.c In function 'main':
myfile.c:6:6: warning: unused variable 'i'
myfile.c:7:1: warning: control reaches end of non-void function
$

 

 

 


也可以看看

GCC
快速表格