qualcommax: ipq807x: add support for Linksys MX8500
[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_13
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
15 config GCC_USE_VERSION_13
16 bool "gcc 13.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 help
34 Use gcc configure option --enable-default-pie to turn on -fPIE and -pie by default.
35
36 config GCC_DEFAULT_SSP
37 bool
38 prompt "Build executable with Stack-Smashing Protection enabled by default" if TOOLCHAINOPTS
39 help
40 Use gcc configure option --enable-default-ssp to turn on -fstack-protector-strong by default.
41
42 config SJLJ_EXCEPTIONS
43 bool
44 prompt "Use setjump()/longjump() exceptions" if TOOLCHAINOPTS
45 help
46 Use old setjump()/longjump() exceptions instead of the newer
47 frame unwinding exceptions handling routines. Warning: increases
48 code size and runtime memory usage.
49
50 config INSTALL_GFORTRAN
51 bool
52 prompt "Build/install fortran compiler?" if TOOLCHAINOPTS
53 help
54 Build/install GNU fortran compiler ?
55
56 config INSTALL_GCCGO
57 bool
58 prompt "Build/install Go compiler?" if TOOLCHAINOPTS
59 depends on USE_GLIBC || BROKEN
60 help
61 Build/install GNU gccgo compiler ?