gcc: switch to 5.2.0 by default
[openwrt/staging/chunkeey.git] / toolchain / gcc / Config.in
1 # Choose gcc version.
2
3 choice
4 prompt "GCC compiler Version" if TOOLCHAINOPTS
5 default GCC_USE_VERSION_4_8_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_4_8_LINARO
11 select GCC_VERSION_4_8_LINARO
12 bool "gcc 4.8.x with Linaro enhancements"
13 depends on !arc
14
15 config GCC_USE_VERSION_4_8_ARC
16 select GCC_VERSION_4_8_ARC
17 bool "gcc 4.8.x with support of ARC cores"
18 depends on arc
19
20 config GCC_USE_VERSION_5
21 select GCC_VERSION_5
22 bool "gcc 5.x"
23 depends on !arc
24
25 endchoice
26
27 config GCC_USE_GRAPHITE
28 bool
29 prompt "Compile in support for the new Graphite framework in GCC 4.4+" if TOOLCHAINOPTS
30
31 config GCC_USE_SYSTEM_PPL_CLOOG
32 bool
33 prompt "Use the system versions of PPL and CLooG"
34 depends on GCC_USE_GRAPHITE && GCC_VERSION_4_8
35 default n
36
37 config EXTRA_GCC_CONFIG_OPTIONS
38 string
39 prompt "Additional gcc configure options" if TOOLCHAINOPTS
40 default ""
41 help
42 Any additional gcc options you may want to include....
43
44 config SSP_SUPPORT
45 bool
46 prompt "Enable Stack-Smashing Protection support" if TOOLCHAINOPTS
47 depends on !USE_MUSL
48 default y if !USE_MUSL
49 help
50 Enable Stack-Smashing Protection support
51
52 config SJLJ_EXCEPTIONS
53 bool
54 prompt "Use setjump()/longjump() exceptions" if TOOLCHAINOPTS
55 default n
56 help
57 Use old setjump()/longjump() exceptions instead of the newer
58 frame unwinding exceptions handling routines. Warning: increases
59 code size and runtime memory usage.
60
61 config INSTALL_LIBGCJ
62 bool
63 prompt "Build/install java compiler and GNU classpath ?" if TOOLCHAINOPTS
64 default n
65 help
66 Build/install java compiler and GNU classpath ?
67
68
69 config INSTALL_GFORTRAN
70 bool
71 prompt "Build/install fortran compiler?" if TOOLCHAINOPTS
72 default n
73 help
74 Build/install GNU fortran compiler ?