anancds / document

MIT License
1 stars 0 forks source link

静态库和动态库 #145

Open anancds opened 3 years ago

anancds commented 3 years ago

动态库: gcc -c test.c -o test.o gcc -shared -fPIC -o test.so test.o

anancds commented 3 years ago

静态库: ar crv [静态库名称] [目标文件1] [目标文件2]... gcc -c test.c -o test.o ar crv test.a test.o ar crv test.a test1.o test2.o test3.o

anancds commented 3 years ago

fPIC:https://blog.csdn.net/derkampf/article/details/69660050