本文介绍了我如何知道 ARM 库是否正在使用 hardfp?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我无权访问构建命令,我的系统中只有库.
I don't have access to the build command, I just have the library in my system.
我想我可以构建一个 hardfp 可执行文件来链接它并进行测试,但我想知道是否有更简单的方法.
I guess I could build an hardfp executable that links against it and test, but I'm wondering if there's an easier way.
推荐答案
Execute readelf -A library.so
:如果打印的标签列表包含 Tag_ABI_VFP_args: VFP registers
, 那么它是一个 hardfp
二进制文件,否则假设 softfp
.
Execute readelf -A library.so
: if the list of printed tags contains Tag_ABI_VFP_args: VFP registers
, then it is a hardfp
binary, otherwise assume softfp
.
例如readelf -A/lib/arm-linux-gnueabihf/libm.so.6
会产生
Attribute Section: aeabi
File Attributes
Tag_CPU_name: "7-A"
Tag_CPU_arch: v7
Tag_CPU_arch_profile: Application
Tag_ARM_ISA_use: Yes
Tag_THUMB_ISA_use: Thumb-2
Tag_FP_arch: VFPv3-D16
Tag_ABI_PCS_wchar_t: 4
Tag_ABI_FP_denormal: Needed
Tag_ABI_FP_exceptions: Needed
Tag_ABI_FP_number_model: IEEE 754
Tag_ABI_align_needed: 8-byte
Tag_ABI_align_preserved: 8-byte, except leaf SP
Tag_ABI_enum_size: int
Tag_ABI_HardFP_use: SP and DP
Tag_ABI_VFP_args: VFP registers
Tag_ABI_optimization_goals: Aggressive Speed
Tag_CPU_unaligned_access: v6
另一方面,readelf -A/lib/arm-linux-gnueabi/libm.so.6
产生
Attribute Section: aeabi
File Attributes
Tag_CPU_name: "7-A"
Tag_CPU_arch: v7
Tag_CPU_arch_profile: Application
Tag_ARM_ISA_use: Yes
Tag_THUMB_ISA_use: Thumb-2
Tag_FP_arch: VFPv3-D16
Tag_ABI_PCS_wchar_t: 4
Tag_ABI_FP_denormal: Needed
Tag_ABI_FP_exceptions: Needed
Tag_ABI_FP_number_model: IEEE 754
Tag_ABI_align_needed: 8-byte
Tag_ABI_align_preserved: 8-byte, except leaf SP
Tag_ABI_enum_size: int
Tag_ABI_optimization_goals: Aggressive Speed
Tag_CPU_unaligned_access: v6
这篇关于我如何知道 ARM 库是否正在使用 hardfp?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!