diff options
author | Lionel Orry <lionel.orry@gmail.com> | 2015-03-25 09:55:30 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-03-25 20:01:55 +0100 |
commit | ab98c9625c1fff2d6e30acbfa1987e6da498b546 (patch) | |
tree | 6512f4d9e6c33e1df277f2f24a3ae4a433f2c2e5 | |
parent | d5c4cb6db4dec7b31e9d180b5740a03f901914ca (diff) | |
download | buildroot-ab98c9625c1fff2d6e30acbfa1987e6da498b546.tar.gz buildroot-ab98c9625c1fff2d6e30acbfa1987e6da498b546.zip |
toolchain: enable musl for sh
The SuperH architecture is supported by the musl libc since some time
now, so let's enable it.
Tested via qemu_sh4_r2d_defconfig.
Signed-off-by: Lionel Orry <lionel.orry@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | toolchain/toolchain-buildroot/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/toolchain-buildroot/Config.in b/toolchain/toolchain-buildroot/Config.in index fcbce6674c..1b4bb9d1ef 100644 --- a/toolchain/toolchain-buildroot/Config.in +++ b/toolchain/toolchain-buildroot/Config.in @@ -85,7 +85,7 @@ config BR2_TOOLCHAIN_BUILDROOT_MUSL bool "musl (experimental)" depends on BR2_aarch64 || BR2_arm || BR2_armeb || BR2_i386 || \ BR2_microblaze || BR2_mips || BR2_mipsel || BR2_powerpc || \ - BR2_x86_64 + BR2_sh || BR2_x86_64 depends on !BR2_powerpc_SPE # not supported, build breaks select BR2_TOOLCHAIN_USES_MUSL help |