gcc -I 選項標誌

gcc -I 添加包含頭文件的目錄。

句法

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

例子

項目/src/myheader.h:

// myheader.h
#define NUM1 5

 

我的文件.c:

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

 

在不包含目錄proj/src的情況下構建myfile.c

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

 

使用包含目錄proj/src構建myfile.c

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

 


也可以看看

Advertising

海灣合作委員會
°• CmtoInchesConvert.com •°