diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-04-28 21:21:16 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-04-28 21:21:16 +0000 |
commit | 1abfe54ddc4d7664a7e0ac70ed0ca33709f27d30 (patch) | |
tree | e124aab0949ade2d6123fea7a4b16f5924b46cdc | |
parent | 7268e7ce8645a5406d153748729a477c8a46c438 (diff) | |
download | mtk-20170518-1abfe54ddc4d7664a7e0ac70ed0ca33709f27d30.zip mtk-20170518-1abfe54ddc4d7664a7e0ac70ed0ca33709f27d30.tar.gz mtk-20170518-1abfe54ddc4d7664a7e0ac70ed0ca33709f27d30.tar.bz2 |
add hidden config value for gcc 3.4+
SVN-Revision: 747
-rw-r--r-- | openwrt/toolchain/gcc/Config.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/openwrt/toolchain/gcc/Config.in b/openwrt/toolchain/gcc/Config.in index c6ea128..e618bc6 100644 --- a/openwrt/toolchain/gcc/Config.in +++ b/openwrt/toolchain/gcc/Config.in @@ -6,6 +6,11 @@ if CONFIG_DEVEL comment "Gcc Options" endif + +config BR2_GCC_3_4 + bool + default n + choice prompt "GCC compiler Version" if CONFIG_DEVEL default BR2_GCC_VERSION_3_3_5 @@ -23,15 +28,19 @@ choice config BR2_GCC_VERSION_3_4_0 bool "gcc 3.4.0" + select BR2_GCC_3_4 config BR2_GCC_VERSION_3_4_1 bool "gcc 3.4.1" + select BR2_GCC_3_4 config BR2_GCC_VERSION_3_4_2 bool "gcc 3.4.2" + select BR2_GCC_3_4 config BR2_GCC_VERSION_3_4_3 bool "gcc 3.4.3" + select BR2_GCC_3_4 endchoice |