Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用一个开源库,它构建到像 libshared.la 这样的文件。我可以使用普通的 gcc 命令静态链接这个文件吗?我比较熟悉 .so 文件的动态链接和 .a 文件的静态链接。虽然不确定.la。谢谢!
那是一个 libtool 文件。您可以使用它libtool:
libtool
$ libtool --mode=link gcc -g -O -o test test.o \ /usr/local/lib/libhello.la
更多关于libtool: