gcc -Bendera opsi dinding

gcc -Wall mengaktifkan semua pesan peringatan kompiler. Opsi ini harus selalu digunakan, untuk menghasilkan kode yang lebih baik.

Sintaksis

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

Contoh

Tulis file sumber myfile.c :

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

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

 

Build reguler myfile.c tidak memberikan pesan:

$ gcc myfile.c -o myfile
$

 

Bangun myfile.c dengan -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
$

 

 

 


Lihat juga

GCC
TABEL CEPAT