gcc -D zastavica možnosti

gcc -D definira makro, ki ga bo uporabil predprocesor.

Sintaksa

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

Primer

Napišite izvorno datoteko myfile.c :

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

 

Zgradite myfile.c in ga zaženite z definiranim DEBUG:

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

 

Ali pa zgradite myfile.c in ga zaženite brez definirane DEBUG:

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

 


Poglej tudi

Advertising

GCC
HITRE MIZE