diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-06-13 11:49:42 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-06-13 11:49:42 +0000 |
commit | 364405da5f5b3ecb0ff96227f153db7fddf07ee7 (patch) | |
tree | cd76e42652582cff3cccf901deabcaea95bf1636 /toolchain/gcc/Config.in | |
parent | 40cee2a9fc1ffef65a39519554e4579a180c4530 (diff) | |
download | buildroot-novena-364405da5f5b3ecb0ff96227f153db7fddf07ee7.tar.gz buildroot-novena-364405da5f5b3ecb0ff96227f153db7fddf07ee7.zip |
toolchain: gcc 4.2.4 support
Diffstat (limited to 'toolchain/gcc/Config.in')
-rw-r--r-- | toolchain/gcc/Config.in | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/toolchain/gcc/Config.in b/toolchain/gcc/Config.in index 4f8eb46a9..d0667e0e4 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_2_3 if !BR2_avr32 + default BR2_GCC_VERSION_4_2_4 if !BR2_avr32 default BR2_GCC_VERSION_4_1_2 if BR2_avr32 help Select the version of gcc you wish to use. @@ -32,6 +32,10 @@ choice depends !BR2_nios2 && !BR2_avr32 bool "gcc 4.2.3" + config BR2_GCC_VERSION_4_2_4 + depends !BR2_nios2 && !BR2_avr32 + bool "gcc 4.2.4" + # config BR2_GCC_VERSION_4_3 # depends !BR2_avr32 && !BR2_nios2 # select BR2_GCC_IS_SNAP @@ -51,8 +55,8 @@ config BR2_GCC_SUPPORTS_SYSROOT config BR2_GCC_SUPPORTS_FINEGRAINEDMTUNE bool - default n if BR2_GCC_VERSION_3_4_6 || BR2_GCC_VERSION_4_0_4 || BR2_GCC_VERSION_4_1_2 || BR2_GCC_VERSION_4_2_1 || BR2_GCC_VERSION_4_2_3 - default y if !BR2_GCC_VERSION_3_4_6 && !BR2_GCC_VERSION_4_0_4 && !BR2_GCC_VERSION_4_1_2 && !BR2_GCC_VERSION_4_2_1 && !BR2_GCC_VERSION_4_2_3 + default n if BR2_GCC_VERSION_3_4_6 || BR2_GCC_VERSION_4_0_4 || BR2_GCC_VERSION_4_1_2 || BR2_GCC_VERSION_4_2_1 || BR2_GCC_VERSION_4_2_3 || BR2_GCC_VERSION_4_2_4 + default y if !BR2_GCC_VERSION_3_4_6 && !BR2_GCC_VERSION_4_0_4 && !BR2_GCC_VERSION_4_1_2 && !BR2_GCC_VERSION_4_2_1 && !BR2_GCC_VERSION_4_2_3 && !BR2_GCC_VERSION_4_2_4 config BR2_GCC_SNAP_DATE string "GCC snapshot date" @@ -69,6 +73,7 @@ config BR2_GCC_VERSION default "4.1.2" if BR2_GCC_VERSION_4_1_2 default "4.2.1" if BR2_GCC_VERSION_4_2_1 default "4.2.3" if BR2_GCC_VERSION_4_2_3 + default "4.2.4" if BR2_GCC_VERSION_4_2_4 default "4.3" if BR2_GCC_VERSION_4_3 config BR2_TOOLCHAIN_SYSROOT |