Is there any way to determine whether a linux executable is using soft float on an ARM processor?
Thanks,
Ben
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Depending on the ARM ABI (EABI) version, there is a processor-specific flags for ARM that indicate the floating point behavior in the
e_flagsfield of anELFheader.From Linux/arch/arm/include/asm/elf.h
EF_ARM_SOFT_FLOAT – use FP instructions(0) libcalls (1)
There are programs such as readelf that can be used to display information about ELF files.