gcc -D definuje makro, ktoré má použiť preprocesor.
$ gcc -Dname [options] [source files]
[-o output file]
$ gcc -Dname=definition [options]
[source files] [-o output file]
Napíšte zdrojový súbor myfile.c :
// myfile.c
#include <stdio.h/
void main()
{
#ifdef DEBUG
printf("Debug run\n");
#else
printf("Release run\n");
#endif
}
Vytvorte súbor myfile.c a spustite ho s definovaným nastavením DEBUG:
$ gcc -D DEBUG myfile.c -o myfile
$ ./myfile
Debug run
$
Alebo vytvorte myfile.c a spustite ho bez definovaného DEBUG:
$ gcc myfile.c -o myfile
$ ./myfile
Release run
$