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 /toolchain/toolchain-buildroot | |
parent | 0b7bf72aa49b617494eb3250e97a69b61f21dff2 (diff) |
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 'toolchain/toolchain-buildroot')
-rw-r--r-- | toolchain/toolchain-buildroot/Config.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/toolchain/toolchain-buildroot/Config.in b/toolchain/toolchain-buildroot/Config.in index 78cac14d1..9fdfb4282 100644 --- a/toolchain/toolchain-buildroot/Config.in +++ b/toolchain/toolchain-buildroot/Config.in @@ -68,9 +68,10 @@ comment "glibc only available with shared lib support" config BR2_TOOLCHAIN_BUILDROOT_MUSL bool "musl" - depends on BR2_aarch64 || BR2_arm || BR2_armeb || BR2_i386 || \ - BR2_microblaze || BR2_mips || BR2_mipsel || BR2_powerpc || \ - BR2_powerpc64 || BR2_powerpc64le || BR2_sh || BR2_x86_64 + depends on BR2_aarch64 || BR2_arm || BR2_armeb || BR2_i386 || \ + BR2_microblaze || BR2_mips || BR2_mipsel || BR2_mips64 || \ + BR2_mips64el || BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le || \ + BR2_sh || BR2_x86_64 depends on !BR2_powerpc_SPE # not supported, build breaks # Unsupported for MIPS R6 depends on !BR2_mips_32r6 && !BR2_mips_64r6 |