blob: c55b0a6021728710f602eb5d9fa7493fb887cd5f (
plain)
1
2
3
4
5
6
7
8
9
10
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
config ADK_TARGET_FPU
string
depends on ADK_TARGET_ARCH_ARM
default "neon" if ADK_TARGET_CPU_WITH_NEON
default "vfp" if ADK_TARGET_CPU_WITH_FPU_VFP
default "vfpv3" if ADK_TARGET_CPU_WITH_FPU_VFPV3
default "vfpv4" if ADK_TARGET_CPU_WITH_FPU_VFPV4
|