gcc -I选项标志

gcc -I 添加头文件的 include 目录。

语法

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

示例

proj/src/myheader.h:

// myheader.h
#define NUM1 5

 

myfile.c:

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

 

在没有 include 目录 proj/src 的情况下编译 myfile.c

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

 

在有 include 目录 proj/src 的情况下编译 myfile.c

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

 


另请参阅

GCC
Copyright © 2024 CanKaoHe.com All rights reserved.

我们所有内容来源于rapidtables.com,遗憾于其没有中文版本,因此建立中文版供网民使用,所有内容版权属于rapidtables.