blob: 6a41140b8a980f132de951bc3e4f5a1a4a335a68 (
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
53
54
55
56
57
58
59
60
61
|
menu "Toolchain settings"
config ADK_TOOLCHAIN_GDB
prompt "Enable building of the GNU debugger"
boolean
default y
config ADK_TOOLCHAIN_GCC_CXX
prompt "Enable building of G++ (C++ language support in GCC)"
boolean
default y
config ADK_TOOLCHAIN_SSP
prompt "Enable Stack Smashing Protection"
boolean
default y
config ADK_TOOLCHAIN_USE_SSP
prompt "Use SSP for all packages"
boolean
depends on ADK_TOOLCHAIN_SSP
default n
config ADK_TOOLCHAIN_LTO
prompt "Enable Link Time Optimization"
boolean
default y
config ADK_TOOLCHAIN_USE_LTO
prompt "Use Link Time Optimization for all packages"
boolean
depends on ADK_TOOLCHAIN_LTO
default n
config ADK_TOOLCHAIN_GOLD
prompt "Enable GOLD as linker"
boolean
depends on !ADK_LINUX_MIPS
default n
config ADK_TOOLCHAIN_USE_GOLD
prompt "Use GOLD as linker for all packages"
boolean
depends on ADK_TOOLCHAIN_GOLD
default n
choice
prompt "Use ARM thumb mode"
depends on ADK_CPU_CORTEX_A9
config ADK_LINUX_ARM_WITHOUT_THUMB
boolean "disabled"
select ADK_mode_arm
config ADK_LINUX_ARM_WITH_THUMB
boolean "enabled"
select ADK_mode_thumb
select ADK_KERNEL_THUMB2_KERNEL
endchoice
endmenu
|