toolchain/gcc: add support for GCC 4.8.0
[openwrt/svn-archive/archive.git] / toolchain / gcc / Config.in
1 # Choose gcc version.
2
3 choice
4 prompt "GCC compiler Version" if TOOLCHAINOPTS
5 default GCC_VERSION_4_4_7 if GCC_DEFAULT_VERSION_4_4_7
6 default GCC_VERSION_4_6_LINARO
7 help
8 Select the version of gcc you wish to use.
9
10 config GCC_VERSION_4_4_7
11 bool "gcc 4.4.7"
12 depends avr32
13
14 config GCC_VERSION_4_6_3
15 bool "gcc 4.6.3"
16
17 config GCC_VERSION_4_7_2
18 bool "gcc 4.7.2"
19
20 config GCC_VERSION_4_6_LINARO
21 bool "gcc 4.6.x with Linaro enhancements"
22
23 config GCC_VERSION_4_7_LINARO
24 bool "gcc 4.7.x with Linaro enhancements"
25
26 config GCC_VERSION_4_8_0
27 bool "gcc 4.8.0"
28
29 endchoice
30
31 config GCC_USE_GRAPHITE
32 bool
33 prompt "Compile in support for the new Graphite framework in GCC 4.4+" if TOOLCHAINOPTS
34
35 config GCC_USE_SYSTEM_PPL_CLOOG
36 bool
37 prompt "Use the system versions of PPL and CLooG"
38 depends GCC_USE_GRAPHITE
39 default n
40
41 config EXTRA_GCC_CONFIG_OPTIONS
42 string
43 prompt "Additional gcc configure options" if TOOLCHAINOPTS
44 default ""
45 help
46 Any additional gcc options you may want to include....
47
48 config SSP_SUPPORT
49 bool
50 prompt "Enable Stack-Smashing Protection support" if TOOLCHAINOPTS
51 default n
52 help
53 Enable Stack-Smashing Protection support
54
55 config TLS_SUPPORT
56 bool
57 prompt "Enable Thread-local storage (TLS) support" if TOOLCHAINOPTS
58 default n
59 help
60 Enable Thread-local storage support
61
62 config SJLJ_EXCEPTIONS
63 bool
64 prompt "Use setjump()/longjump() exceptions" if TOOLCHAINOPTS
65 default n
66 help
67 Use old setjump()/longjump() exceptions instead of the newer
68 frame unwinding exceptions handling routines. Warning: increases
69 code size and runtime memory usage.
70
71 config INSTALL_LIBSTDCPP
72 bool
73 prompt "Build/install c++ compiler and libstdc++?" if TOOLCHAINOPTS
74 default y if !USE_MUSL
75 help
76 Build/install c++ compiler and libstdc++?
77
78 config INSTALL_LIBGCJ
79 bool
80 prompt "Build/install java compiler and GNU classpath ?" if TOOLCHAINOPTS
81 default n
82 help
83 Build/install java compiler and GNU classpath ?
84
85
86 config INSTALL_GFORTRAN
87 bool
88 prompt "Build/install fortran compiler?" if TOOLCHAINOPTS
89 default n
90 help
91 Build/install GNU fortran compiler ?