diff options
author | Vicente Olivert Riera <Vincent.Riera@imgtec.com> | 2016-10-18 16:55:25 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-10-19 23:31:29 +0200 |
commit | 1b974425d12e38225ce2313c048f854f82f766ed (patch) | |
tree | 4cc0f24a9e01b1e38a75d001638cf8c776d76ac9 /package/gcc | |
parent | f7d305fd294a122d982a974314a81a4c57a08067 (diff) | |
download | buildroot-1b974425d12e38225ce2313c048f854f82f766ed.tar.gz buildroot-1b974425d12e38225ce2313c048f854f82f766ed.zip |
MIPS: add support for M6201 cores
-march=m6201 is not yet supported in GCC upstream, so disabling all
versions when selecting this core.
Note that M6201 implies a MIPS R6 CPU, and some GCC versions are already
disabled for R6, so we don't need to disable those ones for M6201 as
well.
The external Codescape IMG GNU Linux Toolchain has support for this
core.
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/gcc')
-rw-r--r-- | package/gcc/Config.in.host | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package/gcc/Config.in.host b/package/gcc/Config.in.host index df60c653d3..d204bf7deb 100644 --- a/package/gcc/Config.in.host +++ b/package/gcc/Config.in.host @@ -63,7 +63,8 @@ choice depends on !(BR2_TOOLCHAIN_USES_MUSL && (BR2_powerpc64 || BR2_powerpc64el)) # Unsupported MIPS cores depends on !BR2_mips_interaptiv && !BR2_mips_m5100 && \ - !BR2_mips_m5101 && !BR2_mips_i6400 && !BR2_mips_p6600 + !BR2_mips_m5101 && !BR2_mips_m6201 && !BR2_mips_i6400 && \ + !BR2_mips_p6600 # musl mips64 unsupported depends on !(BR2_TOOLCHAIN_USES_MUSL && (BR2_mips64 || BR2_mips64el)) select BR2_TOOLCHAIN_GCC_AT_LEAST_5 @@ -73,7 +74,7 @@ choice # Broken or unsupported architectures depends on !BR2_arc # Unsupported MIPS cores - depends on !BR2_mips_p6600 + depends on !BR2_mips_m6201 && !BR2_mips_p6600 select BR2_TOOLCHAIN_GCC_AT_LEAST_6 endchoice |