bandera de opción gcc -D

gcc -D define una macro que utilizará el preprocesador.

Sintaxis

$ gcc -Dname [options] [source files] [-o output file]
$ gcc -Dname=definition [options] [source files] [-o output file]

Ejemplo

Escriba el archivo fuente myfile.c :

// myfile.c
#include <stdio.h/
 
void main()
{
    #ifdef DEBUG   
       printf("Debug run\n");
    #else
       printf("Release run\n");
    #endif
}

 

Construir myfile.c y ejecutarlo con DEBUG definen:

$ gcc -D DEBUG myfile.c -o myfile
$ ./myfile
Debug run
$

 

O compile myfile.cy ejecútelo sin DEBUG definido:

$ gcc myfile.c -o myfile
$ ./myfile
Release run
$

 


Ver también

Advertising

GCC
MESAS RÁPIDAS