summaryrefslogtreecommitdiff
path: root/target/config/Config.in.arm.default
blob: 3e6dac47b354966d89fd2c2d8bb4b11896ef88ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# 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
	boolean

config ADK_hard_float
	boolean

config ADK_fpu_neon
	boolean

config ADK_fpu_vfp
	boolean

config ADK_TARGET_ARM_HARD_FLOAT
	boolean
        select ADK_hard_float
	default y if ADK_TARGET_ABI_EABIHF

config ADK_TARGET_ARM_SOFT_FLOAT
	boolean
        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