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 | 30d9f95085dc143a6b259d5cde9e7f6709d5a573 (patch) | |
tree | 22dea2d1862b9af7813f8602e7dae520138c3b71 /toolchain/gcc | |
parent | fb9f7d60cc616cf590cb283bf88f658c35742895 (diff) | |
download | upstream-30d9f95085dc143a6b259d5cde9e7f6709d5a573.tar.gz upstream-30d9f95085dc143a6b259d5cde9e7f6709d5a573.tar.bz2 upstream-30d9f95085dc143a6b259d5cde9e7f6709d5a573.zip |
add hidden config value for gcc 3.4+
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@747 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain/gcc')
-rw-r--r-- | toolchain/gcc/Config.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/toolchain/gcc/Config.in b/toolchain/gcc/Config.in index c6ea128f31..e618bc67bc 100644 --- a/toolchain/gcc/Config.in +++ b/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 |