Config.in.float.choice 467 B

12345678910111213141516171819
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. choice ADK_TARGET_FLOAT
  4. prompt "Float configuration"
  5. depends on ADK_TARGET_ARCH_ARM || \
  6. ADK_TARGET_ARCH_MIPS || \
  7. ADK_TARGET_ARCH_PPC && \
  8. ADK_TARGET_CPU_WITH_FPU
  9. config ADK_TARGET_HARD_FLOAT
  10. bool "hard-float"
  11. select ADK_hard_float
  12. config ADK_TARGET_SOFT_FLOAT
  13. bool "soft-float"
  14. select ADK_soft_float
  15. endchoice