add GCC 4.1.1 and sync 4.1.0 with Kamikaze
[openwrt/staging/mkresin.git] / openwrt / toolchain / gcc / Config.in
1 # Choose gcc version.
2
3 choice
4 prompt "GCC compiler Version" if TOOLCHAINOPTS
5 default GCC_VERSION_4_0_3 if LINUX_2_6_ARUBA
6 default GCC_VERSION_3_4_4 if LINUX_2_4_BRCM
7 default GCC_VERSION_3_4_6
8 help
9 Select the version of gcc you wish to use.
10
11
12 config GCC_VERSION_3_4_4
13 bool "gcc 3.4.4"
14
15 config GCC_VERSION_3_4_5
16 bool "gcc 3.4.5"
17
18 config GCC_VERSION_3_4_6
19 bool "gcc 3.4.6"
20
21 config GCC_VERSION_4_0_2
22 bool "gcc 4.0.2"
23
24 config GCC_VERSION_4_0_3
25 bool "gcc 4.0.3"
26
27 config GCC_VERSION_4_1_0
28 bool "gcc 4.1.0"
29
30 config GCC_VERSION_4_1_1
31 bool "gcc 4.1.1"
32
33 endchoice
34
35 config GCC_VERSION
36 string
37 prompt "GCC compiler Version" if (TOOLCHAINOPTS && NULL)
38 default "3.4.4" if GCC_VERSION_3_4_4 || LINUX_2_4_BRCM
39 default "3.4.5" if GCC_VERSION_3_4_5
40 default "3.4.6" if GCC_VERSION_3_4_6
41 default "4.0.2" if GCC_VERSION_4_0_2
42 default "4.0.3" if GCC_VERSION_4_0_3 || LINUX_2_6_ARUBA
43 default "4.1.0" if GCC_VERSION_4_1_0
44 default "4.1.1" if GCC_VERSION_4_1_1
45 default "3.4.6"
46
47
48 config EXTRA_GCC_CONFIG_OPTIONS
49 string
50 prompt "Additional gcc options" if TOOLCHAINOPTS
51 default ""
52 help
53 Any additional gcc options you may want to include....
54
55 config INSTALL_LIBSTDCPP
56 bool
57 prompt "Build/install c++ compiler and libstdc++?" if TOOLCHAINOPTS
58 default y
59 help
60 Build/install c++ compiler and libstdc++?
61