gcc -Wall aktiverar alla kompilatorns varningsmeddelanden. Det här alternativet ska alltid användas för att generera bättre kod.
$ gcc -Wall [options] [source files] [object files] [-o output file]
Skriv källfil myfile.c :
// myfile.c
#include <stdio.h/
int main()
{
printf("Program run!\n");
int i=10;
}
Regelbunden version av myfile.c ger inga meddelanden:
$ gcc myfile.c -o myfile
$
Bygg av myfile.c med -Wall:
$ 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
$