本文介绍了我怎么能用objdump这样的东西来说明,如果一个目标文件是用-fPIC构建的?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如果使用 -fPIC
构建了一个目标文件,那么如何通过类似 objdump
的方法来说明?
How can I tell, with something like objdump
, if an object file has been built with -fPIC
?
推荐答案
答案取决于平台。在大多数平台上,如果从
The answer depends on the platform. On most platforms, if output from
readelf --relocs foo.o | egrep '(GOT|PLT|JU?MP_SLOT)'
为空,则 foo.o
未使用 -fPIC
或 foo.o
编译不包含 -fPIC
很重要的任何代码。
is empty, then either foo.o
was not compiled with -fPIC
, or foo.o
doesn't contain any code where -fPIC
matters.
这篇关于我怎么能用objdump这样的东西来说明,如果一个目标文件是用-fPIC构建的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!