Config.in.float.choice 434 B

123456789101112131415161718
  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. config ADK_TARGET_HARD_FLOAT
  9. bool "hard-float"
  10. select ADK_hard_float
  11. config ADK_TARGET_SOFT_FLOAT
  12. bool "soft-float"
  13. select ADK_soft_float
  14. endchoice