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

1.设计库源码

pr1.c

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

pr2.c

1 void print2()
2 {
3     printf("This is the second lib src 
");
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
原文地址:https://www.cnblogs.com/sxmcACM/p/3986462.html