diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-04-13 05:50:01 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-04-13 05:50:01 +0000 |
commit | 7528aaa923b78deaf5727c22d6b114bd1f2e6929 (patch) | |
tree | 6a436895c0bffa3e36e2f98e97b85083c04454d5 /toolchain/gcc/Config.in | |
parent | 85586431fa0019568b98607ebe7497da0c42f6a2 (diff) | |
download | buildroot-novena-7528aaa923b78deaf5727c22d6b114bd1f2e6929.tar.gz buildroot-novena-7528aaa923b78deaf5727c22d6b114bd1f2e6929.zip |
add proper support for gcc snapshots
Diffstat (limited to 'toolchain/gcc/Config.in')
-rw-r--r-- | toolchain/gcc/Config.in | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/toolchain/gcc/Config.in b/toolchain/gcc/Config.in index f2f0a56be..80d8b58f7 100644 --- a/toolchain/gcc/Config.in +++ b/toolchain/gcc/Config.in @@ -51,12 +51,25 @@ choice depends !BR2_nios2 bool "gcc 4.1.0" - config BR2_GCC_VERSION_4_2_0 + config BR2_GCC_VERSION_4_2 depends !BR2_nios2 - bool "gcc 4.2.0" + select BR2_GCC_IS_SNAP + bool "gcc 4.2" endchoice +config BR2_GCC_IS_SNAP + bool + default n + +config BR2_GCC_SNAP_DATE + string "GCC snapshot date" + default "20060408" + depends BR2_GCC_IS_SNAP + help + Enter snapshot date to use for gcc. Format is: + YYYYMMDD + config BR2_GCC_VERSION string default "3.3.5" if BR2_GCC_VERSION_3_3_5 @@ -71,7 +84,7 @@ config BR2_GCC_VERSION default "4.0.2" if BR2_GCC_VERSION_4_0_2 default "4.0.3" if BR2_GCC_VERSION_4_0_3 default "4.1.0" if BR2_GCC_VERSION_4_1_0 - default "4.2.0" if BR2_GCC_VERSION_4_2_0 + default "4.2" if BR2_GCC_VERSION_4_2 config BR2_GCC_USE_SJLJ_EXCEPTIONS |