首页 > 代码库 > UNIX下C语言编程静态库的生成

UNIX下C语言编程静态库的生成

1.设计库源码

pr1.c

1 void print1()2 {3     printf("This is the first lib src \n");4 }
View Code

pr2.c

1 void print2()2 {3     printf("This is the second lib src \n");4 }
View Code

2.编绎.o文件

gcc -O -c pr1.c pr2.c
View Code

3.链接静态库

ar -rsv libpr.a pr1.o pr2.o
View Code

 

UNIX下C语言编程静态库的生成