bandera de opción gcc -Wall

gcc -Wall habilita todos los mensajes de advertencia del compilador. Esta opción debe usarse siempre para generar un mejor código.

Sintaxis

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

Ejemplo

Escriba el archivo fuente myfile.c :

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

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

 

La compilación regular de myfile.c no da mensajes:

$ gcc myfile.c -o myfile
$

 

Compilación de myfile.c con -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
$

 

 

 


Ver también

Advertising

GCC
MESAS RÁPIDAS