package: add support for musl in tuple

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Thomas Petazzoni 2014-05-05 23:17:06 +02:00 committed by Peter Korsgaard
parent a343e8b359
commit 7db35ffa81
1 changed files with 2 additions and 0 deletions

View File

@ -47,6 +47,8 @@ endif
ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC),y)
LIBC=uclibc
else ifeq ($(BR2_TOOLCHAIN_USES_MUSL),y)
LIBC=musl
else
LIBC=gnu
endif