summaryrefslogtreecommitdiff
path: root/toolchain
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2014-05-30 22:25:49 +0200
committerPeter Korsgaard <peter@korsgaard.com>2014-05-30 23:27:58 +0200
commit1a55542e9858e75af75eaadff5cfeddfce7657e1 (patch)
tree1ca54f953024851267e7ce18ac2f69e321f4da2a /toolchain
parent77ef6a3a12ec1e41317ddfa54842c6a59d75dab8 (diff)
toolchain-buildroot: only allow the selection of Musl for Microblaze BE
The Musl C library only supports Microblaze BE, not Microblaze LE, so this commit adjusts the dependencies of the toolchain-buildroot package to not allow the selection of Musl on Microblaze LE. Cc: William Welch <bvwelch@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'toolchain')
-rw-r--r--toolchain/toolchain-buildroot/Config.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/toolchain-buildroot/Config.in b/toolchain/toolchain-buildroot/Config.in
index 216f9db7a..840668c2c 100644
--- a/toolchain/toolchain-buildroot/Config.in
+++ b/toolchain/toolchain-buildroot/Config.in
@@ -80,7 +80,7 @@ comment "(e)glibc only available with shared lib support"
config BR2_TOOLCHAIN_BUILDROOT_MUSL
bool "musl (experimental)"
- depends on BR2_arm || BR2_armeb || BR2_i386 || BR2_microblaze || \
+ depends on BR2_arm || BR2_armeb || BR2_i386 || BR2_microblazebe || \
BR2_mips || BR2_mipsel || BR2_powerpc || BR2_x86_64
select BR2_TOOLCHAIN_USES_MUSL
help