diff options
| author | Vicente Olivert Riera <Vincent.Riera@imgtec.com> | 2015-10-12 11:08:06 +0100 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-10-12 21:33:56 +0200 |
| commit | 99122d67808b91ae1011d440a78f46b0083564b0 (patch) | |
| tree | 0ea81a8ab81000cdb62a457126d3de59ae7eeda4 /package/binutils/Config.in.host | |
| parent | 3ec38bab0f886bcba05b8b6bbdae8e0f9b549478 (diff) | |
| download | buildroot-99122d67808b91ae1011d440a78f46b0083564b0.tar.gz buildroot-99122d67808b91ae1011d440a78f46b0083564b0.zip | |
arch: add support for mips32r6 and mips64r6 variants
- Add support for mips32r6 and mips64r6 target architecture variants
- Disable unsupported gcc versions
- Disable unsupported binutils versions
- Disable unsupported external toolchains
- Disable unsuported C libraries
- Add a hook in order to make glibc compile for MIPS R6.
[Thomas: slightly tweak the glibc hack explanation, to make it
hopefully clearer.]
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/binutils/Config.in.host')
| -rw-r--r-- | package/binutils/Config.in.host | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/binutils/Config.in.host b/package/binutils/Config.in.host index 40619ab811..f6aac5cc6b 100644 --- a/package/binutils/Config.in.host +++ b/package/binutils/Config.in.host @@ -10,11 +10,15 @@ choice config BR2_BINUTILS_VERSION_2_23_X depends on !BR2_aarch64 && !BR2_microblaze && \ !BR2_powerpc64le && !BR2_nios2 + # Unsupported for MIPS R6 + depends on !BR2_mips_32r6 && !BR2_mips_64r6 bool "binutils 2.23.2" config BR2_BINUTILS_VERSION_2_24_X # supported, but broken on Nios-II and powerpc64le depends on !BR2_nios2 && !BR2_powerpc64le + # Unsupported for MIPS R6 + depends on !BR2_mips_32r6 && !BR2_mips_64r6 bool "binutils 2.24" config BR2_BINUTILS_VERSION_2_25_X |

