gcc -D define una macro que utilizará el preprocesador.
$ gcc -Dname [options] [source files]
[-o output file]
$ gcc -Dname=definition [options]
[source files] [-o output file]
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
$