Config.in.fpu.default 432 B

1234567891011121314151617181920212223
  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_fpu_neon
  4. bool
  5. config ADK_fpu_vfp
  6. bool
  7. config ADK_fpu_vfp3
  8. bool
  9. config ADK_fpu_vfp4
  10. bool
  11. config ADK_TARGET_FPU
  12. string
  13. depends on ADK_TARGET_ARCH_ARM
  14. default "vfp" if ADK_fpu_vfp
  15. default "vfp3" if ADK_fpu_vfp3
  16. default "vfp4" if ADK_fpu_vfp4
  17. default "neon" if ADK_fpu_neon