如何编译动态库

2019-04-15 18:59发布

  比如说通过以下的方法: gcc -c -fPIC test1.c                                     //PIC stands for position-independent code. gcc -c -fPIC test2.c 调用方法: gcc -shared -fPIC -o libtest.so test1.o test2.o