treewide: strip useless `default n` Kconfig lines
[openwrt/staging/nbd.git] / toolchain / gcc / Config.in
1 # Choose gcc version.
2
3 choice
4 prompt "GCC compiler Version" if TOOLCHAINOPTS
5 default GCC_USE_VERSION_12
6 help
7 Select the version of gcc you wish to use.
8
9 config GCC_USE_VERSION_11
10 bool "gcc 11.x"
11
12 config GCC_USE_VERSION_12
13 bool "gcc 12.x"
14 endchoice
15
16 config GCC_USE_GRAPHITE
17 bool
18 prompt "Compile in support for the new Graphite framework in GCC 4.4+" if TOOLCHAINOPTS
19
20 config EXTRA_GCC_CONFIG_OPTIONS
21 string
22 prompt "Additional gcc configure options" if TOOLCHAINOPTS
23 default ""
24 help
25 Any additional gcc options you may want to include....
26
27 config GCC_DEFAULT_PIE
28 bool
29 prompt "Build executable with PIE enabled by default" if TOOLCHAINOPTS
30 help
31 Use gcc configure option --enable-default-pie to turn on -fPIE and -pie by default.
32
33 config GCC_DEFAULT_SSP
34 bool
35 prompt "Build executable with Stack-Smashing Protection enabled by default" if TOOLCHAINOPTS
36 help
37 Use gcc configure option --enable-default-ssp to turn on -fstack-protector-strong by default.
38
39 config SJLJ_EXCEPTIONS
40 bool
41 prompt "Use setjump()/longjump() exceptions" if TOOLCHAINOPTS
42 help
43 Use old setjump()/longjump() exceptions instead of the newer
44 frame unwinding exceptions handling routines. Warning: increases
45 code size and runtime memory usage.
46
47 config INSTALL_GFORTRAN
48 bool
49 prompt "Build/install fortran compiler?" if TOOLCHAINOPTS
50 help
51 Build/install GNU fortran compiler ?
52
53 config INSTALL_GCCGO
54 bool
55 prompt "Build/install Go compiler?" if TOOLCHAINOPTS
56 depends on USE_GLIBC || BROKEN
57 help
58 Build/install GNU gccgo compiler ?