本文介绍了我怎么能用像 objdump 这样的东西来判断一个目标文件是否是用 -fPIC 构建的?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我怎么能用objdump
之类的东西判断一个目标文件是否是用-fPIC
构建的?
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 构建的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!