gcc -Wall cho phép tất cả các thông báo cảnh báo của trình biên dịch. Tùy chọn này nên luôn được sử dụng để tạo mã tốt hơn.
$ gcc -Wall [options] [source files] [object files] [-o output file]
Ghi tệp nguồn myfile.c :
// myfile.c
#include <stdio.h/
int main()
{
printf("Program run!\n");
int i=10;
}
Bản dựng thường xuyên của myfile.c không đưa ra thông báo nào:
$ gcc myfile.c -o myfile
$
Xây dựng myfile.c với -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
$