bandera de opción gcc -I

gcc -I agrega el directorio de inclusión de archivos de encabezado.

Sintaxis

$ gcc -Idir [options] [source files] [object files] [-o output file]

Ejemplo

proj/src/myheader.h:

// myheader.h
#define NUM1 5

 

myfile.c:

// myfile.c
#include <stdio.h/
#include "myheader.h"
 
void main()
{
    int num = NUM1;
    printf("num=%d\n", num);
}

 

Construya myfile.c sin incluir el directorio proj / src :

$ gcc myfile.c -o myfile
myfile.c:2:22: fatal error: myheader.h: No such file or directory
compilation terminated.
$

 

Construya myfile.c con el directorio de inclusión proj / src :

$ gcc -Iproj/src myfile.c -o myfile
$ ./myfile
num=5
$

 


Ver también

Advertising

GCC
MESAS RÁPIDAS