Linux静态库的制作 2019-10-11 本文已影响0人 灯火楼台666 静态库 touch main.c gcc main.c -c ar rcs libMyCalc.a main.o 共享库 gcc -fPIC -c main.c