diff options
| author | Khem Raj <raj.khem@gmail.com> | 2014-05-29 00:01:05 -0700 | 
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-01 14:29:29 +0100 | 
| commit | d73709fb2d402e16a771711db0243ceeffdd181b (patch) | |
| tree | b8cda5cbe367056d9b89d3895474ab0dd159322d | |
| parent | 28bb9ddbb34ab890c697e69ded3659f7c83a0b42 (diff) | |
| download | poky-d73709fb2d402e16a771711db0243ceeffdd181b.tar.gz | |
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>
| -rw-r--r-- | meta/classes/cross-canadian.bbclass | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/meta/classes/cross-canadian.bbclass b/meta/classes/cross-canadian.bbclass index cea6afb75d..25e246ddc3 100644 --- a/meta/classes/cross-canadian.bbclass +++ b/meta/classes/cross-canadian.bbclass | |||
| @@ -27,7 +27,9 @@ python () { | |||
| 27 | tarch = d.getVar("TARGET_ARCH", True) | 27 | tarch = d.getVar("TARGET_ARCH", True) | 
| 28 | if tarch == "powerpc": | 28 | if tarch == "powerpc": | 
| 29 | tos = d.getVar("TARGET_OS", True) | 29 | tos = d.getVar("TARGET_OS", True) | 
| 30 | if (tos != "linux" and tos != "linux-gnuspe" and tos != "linux-uclibc" and tos != "linux-uclibcspe"): | 30 | if (tos != "linux" and tos != "linux-gnuspe" | 
| 31 | and tos != "linux-uclibc" and tos != "linux-uclibcspe" | ||
| 32 | and tos != "linux-musl" and tos != "linux-muslspe"): | ||
| 31 | bb.fatal("Building cross-candian powerpc for an unknown TARGET_SYS (%s), please update cross-canadian.bbclass" % d.getVar("TARGET_SYS", True)) | 33 | bb.fatal("Building cross-candian powerpc for an unknown TARGET_SYS (%s), please update cross-canadian.bbclass" % d.getVar("TARGET_SYS", True)) | 
| 32 | # This is a bit ugly. We need to zero LIBC/ABI extension which will change TARGET_OS | 34 | # This is a bit ugly. We need to zero LIBC/ABI extension which will change TARGET_OS | 
| 33 | # however we need the old value in some variables. We expand those here first. | 35 | # however we need the old value in some variables. We expand those here first. | 
