diff options
author | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2008-07-04 08:39:35 +0000 |
---|---|---|
committer | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2008-07-04 08:39:35 +0000 |
commit | 126bb72fa0610c18eed3b62bf5d32ae331bdb9c6 (patch) | |
tree | 1d5aad1fbed6338c0d8444a59e65fd660807c64e /toolchain/gcc/Config.in | |
parent | 9c0ef0b0a9e2409e073c6964d9057be16ff893f6 (diff) | |
download | buildroot-novena-126bb72fa0610c18eed3b62bf5d32ae331bdb9c6.tar.gz buildroot-novena-126bb72fa0610c18eed3b62bf5d32ae331bdb9c6.zip |
Add prepatched AVR32 gcc-4.2.2 toolchain from www.atmel.no, move patch locations for prepatched toolchain to be under the toolchain directory
Diffstat (limited to 'toolchain/gcc/Config.in')
-rw-r--r-- | toolchain/gcc/Config.in | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/toolchain/gcc/Config.in b/toolchain/gcc/Config.in index 0cd6f97a8..72c260612 100644 --- a/toolchain/gcc/Config.in +++ b/toolchain/gcc/Config.in @@ -5,7 +5,7 @@ comment "GCC Options" choice prompt "GCC compiler Version" default BR2_GCC_VERSION_4_2_4 if !BR2_avr32 - default BR2_GCC_VERSION_4_1_2 if BR2_avr32 + default BR2_GCC_VERSION_4_2_3 if BR2_avr32 help Select the version of gcc you wish to use. @@ -29,9 +29,14 @@ choice depends on BR2_EXT_GCC_VERSION_4_2_1 bool "gcc 4.2.1" + config BR2_GCC_VERSION_4_2_2 + depends on BR2_avr32 + depends on BR2_EXT_GCC_VERSION_4_2_2 + bool "gcc 4.2.2" + config BR2_GCC_VERSION_4_2_3 - depends on !BR2_avr32 && !BR2_nios2 - depends on BR2_DEPRECATED + depends on !BR2_nios2 + depends on BR2_EXT_GCC_VERSION_4_2_3 || BR2_DEPRECATED bool "gcc 4.2.3" config BR2_GCC_VERSION_4_2_4 @@ -60,8 +65,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 || 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 + 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_2 || 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_2 && !BR2_GCC_VERSION_4_2_3 && !BR2_GCC_VERSION_4_2_4 config BR2_GCC_SNAP_DATE string "GCC snapshot date" @@ -77,6 +82,7 @@ config BR2_GCC_VERSION default "4.0.4" if BR2_GCC_VERSION_4_0_4 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.2" if BR2_GCC_VERSION_4_2_2 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.1" if BR2_GCC_VERSION_4_3_1 |