解决遇到动态库链接静态库
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决遇到动态库链接静态库相关的知识,希望对你有一定的参考价值。
场景:
二进制Link-->动态库-->第三方静态库
Linux环境中需要动态库链接第三方的静态库
错误:
/usr/bin/ld: ../../3rdpart/x64/muduo/lib/libbase.a(AsyncLogging.o): relocation R_X86_64_32 against `.rodata‘ can not be used when making a shared object; recompile with -fPIC
../../3rdpart/x64/muduo/lib/libbase.a: could not read symbols: Bad value
collect2: error: ld returned 1 exit status
解决方法:
重新编译静态库第三方的静态库
在makefile 中添加-fPIC
查看编译期参数是否缺少 -fPIC , 不仅是共享库,静态库有时也需要有 -fPIC参数
本文出自 “None” 博客,请务必保留此出处http://evely.blog.51cto.com/1089422/1921223
以上是关于解决遇到动态库链接静态库的主要内容,如果未能解决你的问题,请参考以下文章