diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-06-06 18:14:00 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-06-06 18:14:00 +0000 |
commit | c6eb2ed657f6c91d021baf5926b4bd14066667be (patch) | |
tree | dfcd378acdd52c6599de17d586290f247d8eb6dd /toolchain/gcc/Config.in | |
parent | 3342c8c547f9b1acacaec803262adf786a7f0981 (diff) | |
download | buildroot-novena-c6eb2ed657f6c91d021baf5926b4bd14066667be.tar.gz buildroot-novena-c6eb2ed657f6c91d021baf5926b4bd14066667be.zip |
- adjust to use the gcc-4.2.0 release
- adjust default gdb version to 6.6
- fix stripping gmp/mpfr due to recent LIBTGTEXT changes
Diffstat (limited to 'toolchain/gcc/Config.in')
-rw-r--r-- | toolchain/gcc/Config.in | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/toolchain/gcc/Config.in b/toolchain/gcc/Config.in index f834ed314..f705f59eb 100644 --- a/toolchain/gcc/Config.in +++ b/toolchain/gcc/Config.in @@ -4,7 +4,7 @@ comment "Gcc Options" choice prompt "GCC compiler Version" - default BR2_GCC_VERSION_4_1_2 + default BR2_GCC_VERSION_4_2_0 help Select the version of gcc you wish to use. @@ -67,10 +67,14 @@ choice depends !BR2_nios2 bool "gcc 4.1.2" - config BR2_GCC_VERSION_4_2 + config BR2_GCC_VERSION_4_2_0 depends !BR2_nios2 - select BR2_GCC_IS_SNAP - bool "gcc 4.2" + bool "gcc 4.2.0" + +# config BR2_GCC_VERSION_4_3 +# depends !BR2_nios2 +# select BR2_GCC_IS_SNAP +# bool "gcc 4.3" endchoice @@ -80,7 +84,7 @@ config BR2_GCC_IS_SNAP config BR2_GCC_SNAP_DATE string "GCC snapshot date" - default "20061121" + default "20070601" depends BR2_GCC_IS_SNAP help Enter snapshot date to use for gcc. Format is: @@ -103,7 +107,8 @@ config BR2_GCC_VERSION default "4.1.0" if BR2_GCC_VERSION_4_1_0 default "4.1.1" if BR2_GCC_VERSION_4_1_1 default "4.1.2" if BR2_GCC_VERSION_4_1_2 - default "4.2" if BR2_GCC_VERSION_4_2 + default "4.2.0" if BR2_GCC_VERSION_4_2_0 + default "4.3" if BR2_GCC_VERSION_4_3 config BR2_GCC_USE_SJLJ_EXCEPTIONS |