toolchain/arc: update to the most recent release arc-2017.09
[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_7_1_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_7_1_ARC
11 select GCC_VERSION_7_1_ARC
12 bool "gcc 7.1.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_GFORTRAN
58 bool
59 prompt "Build/install fortran compiler?" if TOOLCHAINOPTS
60 default n
61 help
62 Build/install GNU fortran compiler ?
63
64 config INSTALL_GCCGO
65 bool
66 prompt "Build/install Go compiler?" if TOOLCHAINOPTS
67 depends on USE_GLIBC || BROKEN
68 default n
69 help
70 Build/install GNU gccgo compiler ?