opzione gcc -D flag

gcc -D definisce una macro che deve essere utilizzata dal preprocessore.

Sintassi

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

Esempio

Scrivi il file sorgente myfile.c :

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

 

Costruire miofile.c ed eseguirlo con DEBUG definiti:

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

 

Oppure compila myfile.c ed eseguilo senza DEBUG definito:

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

 


Guarda anche

Advertising

GCC
TAVOLI RAPIDI