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