Config.in.arm.default 453 B

12345678910111213141516171819202122232425
  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. config ADK_soft_float
  4. boolean
  5. config ADK_hard_float
  6. boolean
  7. config ADK_fpu_neon
  8. boolean
  9. config ADK_fpu_vfp
  10. boolean
  11. config ADK_TARGET_FLOAT
  12. string
  13. default "hard" if ADK_hard_float
  14. default "soft" if ADK_soft_float
  15. config ADK_TARGET_FPU
  16. string
  17. default "vfp" if ADK_fpu_vfp
  18. default "neon" if ADK_fpu_neon