summaryrefslogtreecommitdiff
path: root/toolchain/Config.in
blob: 9ae0142db7794ad96e2eab5dc849ac6a6af40ac3 (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 y

config ADK_TOOLCHAIN_USE_GOLD
	prompt "Use GOLD as linker for all packages"
	boolean
	depends on ADK_TOOLCHAIN_GOLD
	default n

endmenu