senyal d’opció gcc -D

gcc -D defineix una macro que utilitzarà el preprocessador.

Sintaxi

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

Exemple

Escriviu el fitxer font myfile.c :

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

 

Construir myfile.c i executar-lo amb DEBUG defineixen:

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

 

O creeu myfile.c i executeu-lo sense DEBUG definit:

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

 


Vegeu també

Advertising

GCC
TAULES RÀPIDES