怎麼知道一個 ARM elf object file 是否使用 hardfp ABI 呢? 用 readelf 比較一下即可 /* test.c */ int main() { return 0; } arm-linux-gnueabi-gcc -mcpu=cortex-a9 -mfloat-abi=softfp -o test test.c arm-linux-gnueabi-readelf test ... Tag_CPU_name: "Cortex-A9" Tag_CPU_arch: v7 Tag_CPU_arch_profile: Application