diff options
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 |