This question already has answers here:
Convert a Static Library to a Shared Library?
(5个答案)
两年前关闭。
我已经编译完makefile.am文件,我需要为我的lib共享链接,例如在编译之后,我看到了
示例:
我读过这个here但是我不知道如何工作以及如何使用
(5个答案)
两年前关闭。
我已经编译完makefile.am文件,我需要为我的lib共享链接,例如在编译之后,我看到了
/usr/lib64/libtest.a
,但我需要libtest.so
,因为我需要到其他C源文件的lib,示例:
g++ -llibtest test.c
我读过这个here但是我不知道如何工作以及如何使用
ranlib
或ar
,有没有办法创建*.a到*.so? 最佳答案
我用
./configure --disable-shared
07-28 01:06