mdadm: fix parameter quoting
[lede-git/.git] / toolchain / gcc / Config.in
1 # Choose gcc version.
2
3 choice
4         prompt "GCC compiler Version" if TOOLCHAINOPTS
5         default GCC_USE_VERSION_6_3_ARC if arc
6         default GCC_USE_VERSION_5
7         help
8           Select the version of gcc you wish to use.
9
10         config GCC_USE_VERSION_6_3_ARC
11                 select GCC_VERSION_6_3_ARC
12                 bool "gcc 6.3.x with support of ARC cores"
13                 depends on arc
14
15         config GCC_USE_VERSION_5
16                 bool "gcc 5.x"
17                 depends on !arc
18
19         config GCC_USE_VERSION_6
20                 bool "gcc 6.x"
21                 depends on !arc
22
23         config GCC_USE_VERSION_7
24                 bool "gcc 7.x"
25                 depends on !arc
26
27 endchoice
28
29 config GCC_USE_GRAPHITE
30         bool
31         prompt "Compile in support for the new Graphite framework in GCC 4.4+" if TOOLCHAINOPTS
32
33 config EXTRA_GCC_CONFIG_OPTIONS
34         string
35         prompt "Additional gcc configure options" if TOOLCHAINOPTS
36         default ""
37         help
38             Any additional gcc options you may want to include....
39
40 config SSP_SUPPORT
41         bool
42         prompt "Enable Stack-Smashing Protection support" if TOOLCHAINOPTS
43         depends on !USE_MUSL
44         default y if !USE_MUSL
45         help
46             Enable Stack-Smashing Protection support
47
48 config SJLJ_EXCEPTIONS
49         bool
50         prompt "Use setjump()/longjump() exceptions" if TOOLCHAINOPTS
51         default n
52         help
53             Use old setjump()/longjump() exceptions instead of the newer
54             frame unwinding exceptions handling routines.  Warning: increases
55             code size and runtime memory usage.
56
57 config INSTALL_LIBGCJ
58         bool
59         prompt "Build/install java compiler and GNU classpath ?" if TOOLCHAINOPTS
60         default n
61         help
62             Build/install java compiler and GNU classpath ?
63
64
65 config INSTALL_GFORTRAN
66         bool
67         prompt "Build/install fortran compiler?" if TOOLCHAINOPTS
68         default n
69         help
70             Build/install GNU fortran compiler ?
71
72 config INSTALL_GCCGO
73         bool
74         prompt "Build/install Go compiler?" if TOOLCHAINOPTS
75         depends on USE_GLIBC || BROKEN
76         default n
77         help
78             Build/install GNU gccgo compiler ?