Linux静态库的制作

静态库

touch main.c

gcc main.c -c

ar rcs libMyCalc.a main.o

共享库

gcc -fPIC -c main.c

你可能感兴趣的:(Linux静态库的制作)