blob: b85fd60569a309d3fb685171c78e282a5bb8fd17 (
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
|
menu "Toolchain settings"
config ADK_TOOLCHAIN_GDB
prompt "Enable building of the GNU debugger"
boolean
default n
config ADK_TOOLCHAIN_GCC_CXX
prompt "Enable building of G++ (C++ language support in GCC)"
boolean
default n
config ADK_TOOLCHAIN_GCC_JAVA
prompt "Enable building of GCJ (Java language support in GCC)"
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
endmenu
|