diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-03-10 13:31:04 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-03-10 13:31:04 +0000 |
commit | aaba8c7383c215d89939010bbe1d7c5ed43d0639 (patch) | |
tree | ff41a02a256551e1c5669cc1bd100c1d9a0dc785 /openwrt/toolchain/gcc/Config.in | |
parent | 7068c7f31d3e367833875b15f9901d8c062ed381 (diff) |
add gcc 3.4.6
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3343 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/toolchain/gcc/Config.in')
-rw-r--r-- | openwrt/toolchain/gcc/Config.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/openwrt/toolchain/gcc/Config.in b/openwrt/toolchain/gcc/Config.in index 599bfddb57..9e65aad59f 100644 --- a/openwrt/toolchain/gcc/Config.in +++ b/openwrt/toolchain/gcc/Config.in @@ -10,7 +10,7 @@ endif config BR2_GCC_3_4 bool default n - depends BR2_GCC_VERSION_3_4_4 || BR2_GCC_VERSION_3_4_5 || BR2_GCC_VERSION_4_0_2 || BR2_GCC_VERSION_4_1_0 + depends BR2_GCC_VERSION_3_4_4 || BR2_GCC_VERSION_3_4_5 || BR2_GCC_VERSION_3_4_6 || BR2_GCC_VERSION_4_0_2 || BR2_GCC_VERSION_4_1_0 choice prompt "GCC compiler Version" if CONFIG_DEVEL @@ -28,6 +28,10 @@ choice bool "gcc 3.4.5" select BR2_GCC_3_4 + config BR2_GCC_VERSION_3_4_6 + bool "gcc 3.4.6" + select BR2_GCC_3_4 + config BR2_GCC_VERSION_4_0_2 bool "gcc 4.0.2" select BR2_GCC_3_4 @@ -44,6 +48,7 @@ config BR2_GCC_VERSION string default "3.4.4" if BR2_GCC_VERSION_3_4_4 default "3.4.5" if BR2_GCC_VERSION_3_4_5 || !CONFIG_DEVEL + default "3.4.6" if BR2_GCC_VERSION_3_4_6 default "4.0.2" if BR2_GCC_VERSION_4_0_2 default "4.1.0" if BR2_GCC_VERSION_4_1_0 |