diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2016-08-22 21:19:54 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-08-22 23:10:09 +0200 |
commit | 721e1c1e9ca13f37e3d6aafb0a570fd6fb67fbea (patch) | |
tree | 7357dff6a5043f9ed615fae6584b6a6160fe2501 /package/gcc | |
parent | 0b7bf72aa49b617494eb3250e97a69b61f21dff2 (diff) | |
download | buildroot-721e1c1e9ca13f37e3d6aafb0a570fd6fb67fbea.tar.gz buildroot-721e1c1e9ca13f37e3d6aafb0a570fd6fb67fbea.zip |
musl: enable mips64 support
Add support for mips64, which is available since musl 1.1.15.
Only gcc 6.x has required support for it. Tested variations of
little/big endian and hard/soft float.
Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/gcc')
-rw-r--r-- | package/gcc/Config.in.host | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/package/gcc/Config.in.host b/package/gcc/Config.in.host index 37728e006f..72627147d3 100644 --- a/package/gcc/Config.in.host +++ b/package/gcc/Config.in.host @@ -50,6 +50,8 @@ choice depends on !BR2_mips_32r6 && !BR2_mips_64r6 # musl ppc64 unsupported depends on !(BR2_TOOLCHAIN_USES_MUSL && (BR2_powerpc64 || BR2_powerpc64el)) + # musl mips64 unsupported + depends on !(BR2_TOOLCHAIN_USES_MUSL && (BR2_mips64 || BR2_mips64el)) select BR2_GCC_NEEDS_MPC select BR2_GCC_SUPPORTS_GRAPHITE select BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 @@ -72,6 +74,8 @@ choice depends on !BR2_mips_32r6 && !BR2_mips_64r6 # musl ppc64 unsupported depends on !(BR2_TOOLCHAIN_USES_MUSL && (BR2_powerpc64 || BR2_powerpc64el)) + # musl mips64 unsupported + depends on !(BR2_TOOLCHAIN_USES_MUSL && (BR2_mips64 || BR2_mips64el)) # PR60102 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60102 select BR2_GCC_NEEDS_MPC select BR2_GCC_SUPPORTS_GRAPHITE @@ -83,6 +87,8 @@ choice depends on !BR2_arc && !BR2_bfin # musl ppc64 unsupported depends on !(BR2_TOOLCHAIN_USES_MUSL && (BR2_powerpc64 || BR2_powerpc64el)) + # musl mips64 unsupported + depends on !(BR2_TOOLCHAIN_USES_MUSL && (BR2_mips64 || BR2_mips64el)) select BR2_GCC_NEEDS_MPC select BR2_GCC_SUPPORTS_GRAPHITE select BR2_TOOLCHAIN_GCC_AT_LEAST_5 |