1234567891011121314151617181920212223242526272829303132333435 |
- # This file is part of the OpenADK project. OpenADK is copyrighted
- # material, please see the LICENCE file in the top-level directory.
- config ADK_soft_float
- bool
- config ADK_hard_float
- bool
- config ADK_fpu_neon
- bool
- config ADK_fpu_vfp
- bool
- config ADK_TARGET_ARM_HARD_FLOAT
- bool
- select ADK_hard_float
- default y if ADK_TARGET_ABI_EABIHF
- config ADK_TARGET_ARM_SOFT_FLOAT
- bool
- select ADK_soft_float
- default y if ADK_TARGET_ABI_EABI
- config ADK_TARGET_FLOAT
- string
- default "hard" if ADK_hard_float
- default "soft" if ADK_soft_float
- config ADK_TARGET_FPU
- string
- default "vfp" if ADK_fpu_vfp
- default "neon" if ADK_fpu_neon
|