softfp按照他的翻译是,虽然生成了浮点指定,但是仍然使用软浮点运算的调用规则

-mfloat-abi=name
Specifies which floating-point ABI to use. Permissible values are: `soft', `softfp' and `hard'.
Specifying `soft' causes GCC to generate output containing library calls for floating-point operations. `softfp' allows the generation of code using hardware floating-point instructions, but still uses the soft-float calling conventions. `hard' allows generation of floating-point instructions and uses FPU-specific calling conventions.

The default depends on the specific target configuration. Note that the hard-float and soft-float ABIs are not link-compatible; you must compile your entire program with the same ABI, and link with a compatible set of libraries.

 

Permissible values are: `soft', `softfp' and `hard'.
 

相关文章:

  • 2021-12-29
  • 2021-12-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-12
  • 2021-07-16
  • 2022-02-21
猜你喜欢
  • 2021-11-18
  • 2021-04-25
  • 2021-10-11
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案