链接器如何在没有 SONAME 的情况下找到共享库
如果我创建一个没有像这样的 SONAME 的共享库
gcc -shared libfoo.o -o libfoo.so
并链接到它, 链接器如何找到我的共享库?
文件名 libfoo.so
是否被链接器视为默认 SONAME?
if I create a shared library without a SONAME like this
gcc -shared libfoo.o -o libfoo.so
and link against it,
how does the linker find my shared library?
Is the filename libfoo.so
considered as default SONAME by the linker?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你是对的。 ld 手册页内容如下:
I think you're right. Here what ld man pages say: