Config.in.arm.default 669 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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_armv5te
  4. boolean
  5. config ADK_armv6
  6. boolean
  7. config ADK_armv7a
  8. boolean
  9. config ADK_TARGET_ARM_CPU
  10. string
  11. default "armv5te" if ADK_armv5te
  12. default "armv6" if ADK_armv6
  13. default "armv7-a" if ADK_armv7a
  14. config ADK_soft_float
  15. boolean
  16. config ADK_hard_float
  17. boolean
  18. config ADK_fpu_neon
  19. boolean
  20. config ADK_fpu_vfp
  21. boolean
  22. config ADK_TARGET_FLOAT
  23. string
  24. default "hard" if ADK_hard_float
  25. default "soft" if ADK_soft_float
  26. config ADK_TARGET_FPU
  27. string
  28. default "vfp" if ADK_fpu_vfp
  29. default "neon" if ADK_fpu_neon