summaryrefslogtreecommitdiff
path: root/target/config/Config.in.abi.choice
blob: 74e599ead84654f6815ea2db7a8be9a8bc05d78a (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.

choice
prompt "Target ABI"
depends on !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_SYSTEM
depends on ADK_LINUX_MIPS64

config ADK_TARGET_ABI_N32
	boolean "N32 ABI"
	select ADK_n32

config ADK_TARGET_ABI_N64
	boolean "N64 ABI"
	select ADK_n64

config ADK_TARGET_ABI_O32
	boolean "O32 ABI"
	select ADK_o32

endchoice

choice
prompt "Target ABI"
depends on !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_SYSTEM
depends on ADK_LINUX_X86_64

config ADK_TARGET_ABI_64
	boolean "64 Bit ABI"
	select ADK_64

config ADK_TARGET_ABI_X32
	boolean "x32 ABI"
	select ADK_x32

endchoice

choice
prompt "Target ABI"
depends on !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_SYSTEM
depends on ADK_LINUX_ARM
depends on ADK_TARGET_CPU_WITH_FPU || ADK_TARGET_SYSTEM_QEMU_ARM || ADK_TARGET_TOOLCHAIN

config ADK_TARGET_ABI_EABIHF
	boolean "EABIhf"
	select ADK_eabihf

config ADK_TARGET_ABI_EABI
	boolean "EABI"
	select ADK_eabi

endchoice