:orphan: .. title:: CONFIG_FP_HARDABI .. kconfig:: CONFIG_FP_HARDABI CONFIG_FP_HARDABI ################# *Floating point Hard ABI* Type: ``bool`` Help ==== .. code-block:: none This option selects the Floating point ABI in which hardware floating point instructions are generated and uses FPU-specific calling conventions. Note: the option is disabled for Zephyr builds with TF-M, as TF-M does not currently support building with Hard ABI, hence linking Zephyr with TF-M libraries would not be possible. Direct dependencies =================== !\ :kconfig:`BUILD_WITH_TFM ` && \ :ref:` ` *(Includes any dependencies from ifs and menus.)* Kconfig definition ================== At ``/arm/core/aarch32/Kconfig:244`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:39`` → ``/Kconfig:12`` → ``/arm/Kconfig:57`` Menu path: (Top) → ARM Options → Floating point ABI .. code-block:: kconfig config FP_HARDABI bool "Floating point Hard ABI" depends on !BUILD_WITH_TFM && help This option selects the Floating point ABI in which hardware floating point instructions are generated and uses FPU-specific calling conventions. Note: the option is disabled for Zephyr builds with TF-M, as TF-M does not currently support building with Hard ABI, hence linking Zephyr with TF-M libraries would not be possible. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*