diff options
author | Vicente Olivert Riera <Vincent.Riera@imgtec.com> | 2016-09-30 10:36:56 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-10-15 13:22:17 +0200 |
commit | 55a37eaa911437352c8b5ad7b7bd9cc9160229ce (patch) | |
tree | b866480a7f892a5f83baeab4c2fc3d127780dbda /package/gcc | |
parent | 067a46474ad2ebe3b335f6fecaa3816b833d0afb (diff) | |
download | buildroot-55a37eaa911437352c8b5ad7b7bd9cc9160229ce.tar.gz buildroot-55a37eaa911437352c8b5ad7b7bd9cc9160229ce.zip |
MIPS: add support for M5101 cores
-march=m5101 support starts from GCC-6, so disable previous versions
when selecting this core.
Note that M5101 implies a MIPS R5 CPU, and some GCC versions are already
disabled for R5, so we don't need to disable those ones for M5101 as
well.
Also disable external toolchains that don't support this core.
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/gcc')
-rw-r--r-- | package/gcc/Config.in.host | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/gcc/Config.in.host b/package/gcc/Config.in.host index 2d853879c3..15b23dbeeb 100644 --- a/package/gcc/Config.in.host +++ b/package/gcc/Config.in.host @@ -100,7 +100,8 @@ choice # musl ppc64 unsupported depends on !(BR2_TOOLCHAIN_USES_MUSL && (BR2_powerpc64 || BR2_powerpc64el)) # Unsupported MIPS cores - depends on !BR2_mips_interaptiv && !BR2_mips_m5100 + depends on !BR2_mips_interaptiv && !BR2_mips_m5100 && \ + !BR2_mips_m5101 # musl mips64 unsupported depends on !(BR2_TOOLCHAIN_USES_MUSL && (BR2_mips64 || BR2_mips64el)) select BR2_GCC_NEEDS_MPC |