GCC生成动态库

Posted Kevin_Hwang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GCC生成动态库相关的知识,希望对你有一定的参考价值。

以下内容仅作为本人工作笔记

main.c

1 #include <stdio.h>
2 void hello(void);
3 int main(int argc, char ** argv) {
4         printf("This is main function!\n");
5         hello();
6         return 0;
7 }

hello.c

1 #include <stdio.h>
2 void hello() {
3         printf("This is hello function!\n");
4 }

--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

1:gcc -shared -fPIC -o libmyhello.so hello.c

把hello.c生成动态库。

-shared表示共享,用作动态库。

-fPIC position independent code表示位置无关代码,用于动态加载。

 

2:gcc -o myhello main.c -L. -lmyhello

-l‘xxxx‘ 表示提取libxxxx.so库文件。如实例则表示libmyhello.so。

-L‘path‘ 表示库文件的位置在path目录下。如实例则表示在当前目录 . 。

 

3:sudo cp libmyhello.so /usr/lib/

把动态库复制到linux默认库文件/usr/lib/下。

若想在任意库目录下生产可执行文件,去掉步骤2,用gcc -o myhello main.c ./libmyhello.so取代即可。

每次运行myhello 需要保证"./libmyhello.so"的存在,不推荐使用。

 

4:./myhello 提示:

This is main function!
This is hello function!

表示运行成功!

 

以上是关于GCC生成动态库的主要内容,如果未能解决你的问题,请参考以下文章

Linux下gcc生成和使用静态库和动态库详解

Linux下Gcc生成和使用静态库和动态库详解

Linux动态库

gcc 生成动态链接库

gcc编译工具生成动态库和静态库之一----介绍

Ubuntu下makefile及gcc生成静态库动态库的简单使用举例