gcc -D definuje makro, které má použít preprocesor.
$ gcc -Dname [options] [source files]
[-o output file]
$ gcc -Dname=definition [options]
[source files] [-o output file]
Napište zdrojový soubor myfile.c :
// myfile.c
#include <stdio.h/
void main()
{
#ifdef DEBUG
printf("Debug run\n");
#else
printf("Release run\n");
#endif
}
Vytvořte soubor myfile.c a spusťte jej s DEBUG definovaným:
$ gcc -D DEBUG myfile.c -o myfile
$ ./myfile
Debug run
$
Nebo vytvořte myfile.c a spusťte jej bez DEBUG definovaného:
$ gcc myfile.c -o myfile
$ ./myfile
Release run
$
Advertising