summaryrefslogtreecommitdiffstats
path: root/toolchain/gcc/Config.in
diff options
context:
space:
mode:
authorMike Frysinger2006-04-13 07:50:01 +0200
committerMike Frysinger2006-04-13 07:50:01 +0200
commit7528aaa923b78deaf5727c22d6b114bd1f2e6929 (patch)
tree6a436895c0bffa3e36e2f98e97b85083c04454d5 /toolchain/gcc/Config.in
parentslight tweak so it will actually compile (diff)
downloadbuildroot-7528aaa923b78deaf5727c22d6b114bd1f2e6929.tar.gz
buildroot-7528aaa923b78deaf5727c22d6b114bd1f2e6929.tar.xz
buildroot-7528aaa923b78deaf5727c22d6b114bd1f2e6929.zip
add proper support for gcc snapshots
Diffstat (limited to 'toolchain/gcc/Config.in')
-rw-r--r--toolchain/gcc/Config.in19
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