gcc中的参数-I -L -l三者的区别

Posted wanghuaijun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了gcc中的参数-I -L -l三者的区别相关的知识,希望对你有一定的参考价值。

我们用gcc编译程序时,可能会用到“-I”(大写i),“-L”(大写l),“-l”(小写l)等参数,下面做个记录:


例:

gcc -o hello hello.c -I /home/hello/include -L /home/hello/lib -lworld


上面这句表示在编译hello.c时:


-I /home/hello/include表示将/home/hello/include目录作为第一个寻找头文件的目录,寻找的顺序是:/home/hello/include-->/usr/include-->/usr/local/include



-L /home/hello/lib表示将/home/hello/lib目录作为第一个寻找库文件的目录,寻找的顺序是:/home/hello/lib-->/lib-->/usr/lib-->/usr/local/lib



 -lworld表示在上面的lib的路径中寻找libworld.so动态库文件(如果gcc编译选项中加入了“-static”表示寻找libworld.a静态库文件)

以上是关于gcc中的参数-I -L -l三者的区别的主要内容,如果未能解决你的问题,请参考以下文章

docker-compose 安装问题:error: command 'i686-linux-gnu-gcc' failed with exit status 1

gcc相关

mingw-gcc-9.3.1-i686-posix-sjlj-20200315-6c7e43f

为啥将 lambda 用于非类型模板参数时 gcc 会失败?

markdown [动态与静态编译] gcc参数说明

gcc