欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

静态库和动态库

程序员文章站 2022-06-09 17:43:32
...

一、编写简单的add/sub/mul/div函数
add函数 :

int add(int a,int b)
{
        return a+b;
}

sub函数:

int sub(int a,int b)
{
        return a-b;
}

mul函数 :

int mul(int a,int b)
{
        return a*b;
}

div函数:

int mul(int a,int b)
{
        return a*b;
}

二、写依赖文件makefile:


.PHONY: clean
main:add.o sub.o mul.o Div.o main.o
        gcc $^ -o [email protected]
%.o : %.c
        gcc -c $< -o [email protected] -I ../include
clean:
        rm -rf *.o

三、封装成静态库:
静态库:对一系列.o文件进行打包,会将源代码放进来
生成方法:ar -cr lib库名.a 文件
ar -cr libmymath.a(mymath为库名) 文件
使用:
gcc man.c -L. -l库名(-lmymath)
寻找库:
/lib64
/usr/lib/64
-L:库路径
cp libmymath.a /lib.64 //将自己写的库放在系统的库中,一般不要这样做。
具体操作方法如下:
静态库和动态库

四、生成动态库
动态库(共享库 shared libary):ldd 文件:可以查询这个文件用到的动态库信息
生成动态库

  gcc   -fPIC (位置无关的代码)   -shared libxxx.so(xxx为动态库的库名)  xxx.c
  (gcc -fPIC -shared -o libmymath.so add.c sub.c mul.c)

静态库和动态库

动态库文件是一个可重新定位的文件,动态库只是放符号,并不把代码放进来。运行阶段才将代码放进来。
链接动态库

            gcc main.c -L. -lmymath

使用动态库(三种方法)

  1、 /lib64/
                /usr/lib64
  2、export LD_LIDRARY_PATH=.
  3、/etc/ld.so.conf.d/xxx.conf   文件中将动态数据库的路径写入
 例如:echo `pwd` >/etc/ld.so.conf.d/my.conf
             ldconfig   //刷新缓存

静态库和动态库
export LD_LIBRARY_PATH=.(.代表当前目录)
执行结果:
静态库和动态库

相关标签: 静态库 动态库