| 1234567891011121314151617181920212223 |
- # This file is part of the OpenADK project. OpenADK is copyrighted
- # material, please see the LICENCE file in the top-level directory.
- config ADK_fpu_neon
- bool
- config ADK_fpu_vfp
- bool
- config ADK_fpu_vfp3
- bool
- config ADK_fpu_vfp4
- bool
- config ADK_TARGET_FPU
- string
- depends on ADK_TARGET_ARCH_ARM
- default "vfp" if ADK_fpu_vfp
- default "vfp3" if ADK_fpu_vfp3
- default "vfp4" if ADK_fpu_vfp4
- default "neon" if ADK_fpu_neon
|