summaryrefslogtreecommitdiff
path: root/toolchain/Config.in
blob: e86e9656ffe062d9d5faeca68f45e432df12bac9 (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
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_GCC_JAVA
	prompt "Enable building of GCJ (Java language support in GCC)"
	boolean
	default n

config ADK_TOOLCHAIN_GCC_OBJC
	prompt "Enable building of Objective C compiler"
	boolean
	default n

config ADK_TOOLCHAIN_GCC_SSP
	prompt "Enable Stack Smashing Protection in GCC"
	boolean
	default n

config ADK_TOOLCHAIN_GCC_USE_SSP
	prompt "Use SSP for all packages"
 	boolean	
	depends on ADK_TOOLCHAIN_GCC_SSP
	default n

config ADK_TOOLCHAIN_GCC_LTO
	prompt "Enable Link Time Optimization in GCC"
	boolean
	default n

config ADK_TOOLCHAIN_GCC_USE_LTO
	prompt "Use Link Time Optimization for all packages"
	boolean
	depends on ADK_TOOLCHAIN_GCC_LTO
	default n

endmenu