cross-canadian.bbclass: Recognise musl

(From OE-Core rev: 66fd622058f690dbb291a648ec1583191bf44df5)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Khem Raj 2014-05-29 00:01:05 -07:00 committed by Richard Purdie
parent 28bb9ddbb3
commit d73709fb2d
1 changed files with 3 additions and 1 deletions

View File

@ -27,7 +27,9 @@ python () {
tarch = d.getVar("TARGET_ARCH", True)
if tarch == "powerpc":
tos = d.getVar("TARGET_OS", True)
if (tos != "linux" and tos != "linux-gnuspe" and tos != "linux-uclibc" and tos != "linux-uclibcspe"):
if (tos != "linux" and tos != "linux-gnuspe"
and tos != "linux-uclibc" and tos != "linux-uclibcspe"
and tos != "linux-musl" and tos != "linux-muslspe"):
bb.fatal("Building cross-candian powerpc for an unknown TARGET_SYS (%s), please update cross-canadian.bbclass" % d.getVar("TARGET_SYS", True))
# This is a bit ugly. We need to zero LIBC/ABI extension which will change TARGET_OS
# however we need the old value in some variables. We expand those here first.