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