modules: Add kernel module for MV88E6xxx DSA switch
[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_10
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_9
13 bool "gcc 9.x"
14
15 config GCC_USE_VERSION_10
16 bool "gcc 10.x"
17
18 config GCC_USE_VERSION_11
19 bool "gcc 11.x"
20 endchoice
21
22 config GCC_USE_GRAPHITE
23 bool
24 prompt "Compile in support for the new Graphite framework in GCC 4.4+" if TOOLCHAINOPTS
25
26 config EXTRA_GCC_CONFIG_OPTIONS
27 string
28 prompt "Additional gcc configure options" if TOOLCHAINOPTS
29 default ""
30 help
31 Any additional gcc options you may want to include....
32
33 config GCC_DEFAULT_PIE
34 bool
35 prompt "Build executable with PIE enabled by default" if TOOLCHAINOPTS
36 default n
37 help
38 Use gcc configure option --enable-default-pie to turn on -fPIE and -pie by default.
39
40 config GCC_DEFAULT_SSP
41 bool
42 prompt "Build executable with Stack-Smashing Protection enabled by default" if TOOLCHAINOPTS
43 default n
44 help
45 Use gcc configure option --enable-default-ssp to turn on -fstack-protector-strong by default.
46
47 config SJLJ_EXCEPTIONS
48 bool
49 prompt "Use setjump()/longjump() exceptions" if TOOLCHAINOPTS
50 default n
51 help
52 Use old setjump()/longjump() exceptions instead of the newer
53 frame unwinding exceptions handling routines. Warning: increases
54 code size and runtime memory usage.
55
56 config INSTALL_GFORTRAN
57 bool
58 prompt "Build/install fortran compiler?" if TOOLCHAINOPTS
59 default n
60 help
61 Build/install GNU fortran compiler ?
62
63 config INSTALL_GCCGO
64 bool
65 prompt "Build/install Go compiler?" if TOOLCHAINOPTS
66 depends on USE_GLIBC || BROKEN
67 default n
68 help
69 Build/install GNU gccgo compiler ?