gcc编译静态库和动态库

来源:互联网 发布:淘宝全国包邮图片 编辑:程序博客网 时间:2024/05/01 21:55

一、动态链接库

1.创建hello.so动态库

[cpp] view plaincopyprint?
  1. #include <stdio.h>  
  2. void hello(){  
  3.     printf("hello world\n");  
  4. }  
  5. 编译:gcc -fPIC -shared hello.c -o libhello.so  

2.hello.h头文件

[cpp] view plaincopyprint?
  1. void hello();  

3.链接动态库

[cpp] view plaincopyprint?
  1. #include <stdio.h>  
  2. #include "hello.h"  
  3.   
  4. int main(){  
  5.     printf("call hello()");  
  6.     hello();  
  7. }  
  8. 编译:gcc main.c -L. -lhello -o main  
这里-L的选项是指定编译器在搜索动态库时搜索的路径,告诉编译器hello库的位置。"."意思是当前路径.


3.编译成够后执行./main,会提示:

[plain] view plaincopyprint?
  1. In function `main':  
  2.    
  3. main.c:(.text+0x1d): undefined reference to `hello'  
  4. collect2: ld returned 1 exit status  
这是因为在链接hello动态库时,编译器没有找到。
解决方法:
[plain] view plaincopyprint?
  1. sudo cp libhello.so /usr/lib/  
这样,再次执行就成功输入:
call hello()


二、静态库

文件有:main.c、hello.c、hello.h
1.编译静态库hello.o: 

[plain] view plaincopyprint?
  1. gcc hello.c -o hello.o  #这里没有使用-shared  

2.把目标文档归档

[plain] view plaincopyprint?
  1. ar -r libhello.a hello.o  #这里的ar相当于tar的作用,将多个目标打包。  
程序ar配合参数-r创建一个新库libhello.a,并将命令行中列出的文件打包入其中。这种方法,如果libhello.a已经存在,将会覆盖现在文件,否则将新创建。

3.链接静态库

[plain] view plaincopyprint?
  1. gcc main.c -lhello -L. -static -o main  
这里的-static选项是告诉编译器,hello是静态库。
或者:

[plain] view plaincopyprint?
  1. gcc main.c libhello.a -L. -o main  
这样就可以不用加-static

4.执行./main

输出:call hello()


0 0
原创粉丝点击