דגל אפשרות gcc -I

gcc -I מוסיף כולל ספרייה של קבצי כותרות.

תחביר

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

דוגמא

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);
}

 

בנה את myfile.c בלי לכלול את הספרייה proj / src :

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

 

בנה myfile.c עם ספריה הכוללת proj / src :

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

 


ראה גם

Advertising

GCC
שולחנות מהירים