使用 libtool 时避免链接静态库
我正在尝试在 Linux 机器上交叉编译 ImageMagick。工具链自带的libstdc++.a不是用fPIC编译的。我想改用so文件。但是 libtool 不断链接 libstdc++.a (作为整个存档),并且出现重定位错误。我在其他图书馆也看到了同样的问题。有什么想法吗?
I am trying to cross compile ImageMagick on a linux machine. The libstdc++.a that comes with the toolchain is not compiled with fPIC. I would like to use the so file instead. However libtool keeps linking libstdc++.a (as whole-archive) and I get relocation errors. I have seen the same issue with other libraries as well. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从工具链文件夹中删除所有 la 文件会有所帮助。我的猜测是,如果没有 la 文件,libtool 会进行搜索并找到动态库。
Deleting all the la files from the toolchain folder helped. My guess is without the la files, libtool does a search and finds the dynamic libraries.