美文网首页
5.静态链接和动态链接

5.静态链接和动态链接

作者: 陈忠俊 | 来源:发表于2020-03-09 23:16 被阅读0次

    静态链接:在编译目标软件的同时将其他资源编译到该目标文件中,缺点,会占用较多的资源,空间。
    动态链接:目标程序在运行时才动态加载库文件,库的内容不会在编译的过程中不会被编译到目标文件中,只会以路径相关的形式告知目标文件。

    1.静态库文件的制作与编译

    1.1.编写库文件 math.h

    #ifndef T_MATH_H
    #define T_MATH_H
    int add(int, int);
    float multiply(float, float);
    #endif
    

    1.2.编写函数add.c

    #include<stdio.h>
    #include"math.h" //加载本地文件夹的math.h文件
    
    int add(int x, int y){
            return x + y;
    }
    

    1.3.编写multiply.c

    #include<stdio.h>
    #include"math.h"
    
    float multiply(float a, float b){
            return a * b;
    }
    

    1.4.编写main.c

    #include<stdio.h>
    #include"math.h"
    void main(){
            int a = 3, b = 5;
            float x = 1.5, y = 2.5;
            printf("%d + %d = %d\n", a, b, add(a, b));
            printf("%f * %f = %f\n", x, y, multiply(x, y));
    }
    

    1.5.编译库文件

    root@eclipse:~/# gcc -c add.c multiply.c
    root@eclipse:~/# ls
    add.c  add.o  main.c  math.h  multiply.c  multiply.o
    

    1.6.创建静态库

    root@eclipse:~/# ar -r out.a *.o
    ar: creating out.a
    root@eclipse:~/# ls
    add.c  add.o  main.c  math.h  multiply.c  multiply.o  out.a
    

    1.7.编译main.c

    root@eclipse:~/# gcc main.c -L. out.a -o test
    root@eclipse:~/# ls
    add.c  add.o  main.c  math.h  multiply.c  multiply.o  out.a  test
    root@eclipse:~/# ./test
    3 + 5 = 8
    1.500000 * 2.500000 = 3.750000
    

    2.以相同的文件编译动态链接文件

    2.1.linux文件以.so结尾为动态链接文件

    root@eclipse:~/# gcc -c -fPIC add.c multiply.c
    root@eclipse:~/# ls
    add.c  add.o  main.c  math.h  multiply.c  multiply.o
    ---------------------------------------------------------------------------------------------------------------
    root@eclipse:~/# gcc -shared -o aa.so *.o
    root@eclipse:~/# ls
    aa.so  add.c  add.o  main.c  math.h  multiply.c  multiply.o
    root@eclipse:~/#
    

    2.2.编译main.c

    root@eclipse:~/# gcc main.c -L. aa.so -o hello
    root@eclipse:~/# ls
    aa.so  add.c  add.o  hello  main.c  math.h  multiply.c  multiply.o
    root@eclipse:~/l# ./hello
    ./hello: error while loading shared libraries: aa.so: cannot open shared object file: No such file or directory
    root@eclipse:~/# ldd hello
            linux-vdso.so.1 (0x7efd9000)
            /usr/lib/arm-linux-gnueabihf/libarmmem.so (0x76f3d000)
            aa.so => not found
            libc.so.6 => /lib/arm-linux-gnueabihf/libc.so.6 (0x76e27000)
            /lib/ld-linux-armhf.so.3 (0x54b92000)
    

    这里的aa.so => not found,是因为本地库文件的路径不在环境变量里。通过以下命令:

    root@eclipse:~/linkTest# pwd
    /home/linkTest
    root@eclipse:~/linkTest# export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/linkTest
    

    测试如下:

    root@eclipse:~/linkTest# ./hello
    3 + 5 = 8
    1.500000 * 2.500000 = 3.750000
    root@eclipse:~/linkTest# ldd hello
            linux-vdso.so.1 (0x7ef0d000)
            /usr/lib/arm-linux-gnueabihf/libarmmem.so (0x76f4b000)
            aa.so (0x76f39000)  #在当前路径下
            libc.so.6 => /lib/arm-linux-gnueabihf/libc.so.6 (0x76e23000)
            /lib/ld-linux-armhf.so.3 (0x54ad6000)
    root@eclipse:~/linkTest#
    

    相关文章

      网友评论

          本文标题:5.静态链接和动态链接

          本文链接:https://www.haomeiwen.com/subject/satvdhtx.html