blob: 3a0306ac477bc0b35170664fdeae5aacc1f2dceb (
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
|
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
endmenu
|