Fix the remaining kernel config options (#2102)
[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_3_4_6 if LINUX_2_4
6 default GCC_VERSION_4_2_0 if LINUX_2_6_MAGICBOX
7 default GCC_VERSION_4_1_2
8 help
9 Select the version of gcc you wish to use.
10
11 config GCC_VERSION_3_4_6
12 bool "gcc 3.4.6"
13
14 config GCC_VERSION_4_1_2
15 depends !LINUX_2_4
16 bool "gcc 4.1.2"
17
18 config GCC_VERSION_4_2_0
19 depends !LINUX_2_4
20 bool "gcc 4.2.0"
21
22 config GCC_VERSION_4_2_1
23 depends !LINUX_2_4
24 bool "gcc 4.2.1"
25
26 endchoice
27
28 config EXTRA_GCC_CONFIG_OPTIONS
29 string
30 prompt "Additional gcc options" if TOOLCHAINOPTS
31 default ""
32 help
33 Any additional gcc options you may want to include....
34
35 config INSTALL_LIBSTDCPP
36 bool
37 prompt "Build/install c++ compiler and libstdc++?" if TOOLCHAINOPTS
38 default y
39 help
40 Build/install c++ compiler and libstdc++?
41
42