toolchain/arc: update to the most recent release arc-2016.09
[librecmc/librecmc.git] / toolchain / gcc / Config.in
1 # Choose gcc version.
2
3 choice
4         prompt "GCC compiler Version" if TOOLCHAINOPTS
5         default GCC_USE_VERSION_6_2_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_6_2_ARC
11                 select GCC_VERSION_6_2_ARC
12                 bool "gcc 6.2.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 endchoice
24
25 config GCC_USE_GRAPHITE
26         bool
27         prompt "Compile in support for the new Graphite framework in GCC 4.4+" if TOOLCHAINOPTS
28
29 config EXTRA_GCC_CONFIG_OPTIONS
30         string
31         prompt "Additional gcc configure options" if TOOLCHAINOPTS
32         default ""
33         help
34             Any additional gcc options you may want to include....
35
36 config SSP_SUPPORT
37         bool
38         prompt "Enable Stack-Smashing Protection support" if TOOLCHAINOPTS
39         depends on !USE_MUSL
40         default y if !USE_MUSL
41         help
42             Enable Stack-Smashing Protection support
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_LIBGCJ
54         bool
55         prompt "Build/install java compiler and GNU classpath ?" if TOOLCHAINOPTS
56         default n
57         help
58             Build/install java compiler and GNU classpath ?
59
60
61 config INSTALL_GFORTRAN
62         bool
63         prompt "Build/install fortran compiler?" if TOOLCHAINOPTS
64         default n
65         help
66             Build/install GNU fortran compiler ?
67
68 config INSTALL_GCCGO
69         bool
70         prompt "Build/install Go compiler?" if TOOLCHAINOPTS
71         depends on USE_GLIBC || BROKEN
72         default n
73         help
74             Build/install GNU gccgo compiler ?