diff options
Diffstat (limited to 'meta/recipes-core/musl/musl.inc')
-rw-r--r-- | meta/recipes-core/musl/musl.inc | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/meta/recipes-core/musl/musl.inc b/meta/recipes-core/musl/musl.inc index 6ca52b186a..ce45de2d23 100644 --- a/meta/recipes-core/musl/musl.inc +++ b/meta/recipes-core/musl/musl.inc | |||
@@ -9,7 +9,7 @@ standards-conformance and safety." | |||
9 | HOMEPAGE = "http://www.musl-libc.org/" | 9 | HOMEPAGE = "http://www.musl-libc.org/" |
10 | LICENSE = "MIT" | 10 | LICENSE = "MIT" |
11 | SECTION = "libs" | 11 | SECTION = "libs" |
12 | LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=b03f1cc25363d094011f8f4fd8bcfb68" | 12 | LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=0c2904cdc34777fb4067732bae145506" |
13 | 13 | ||
14 | INHIBIT_DEFAULT_DEPS = "1" | 14 | INHIBIT_DEFAULT_DEPS = "1" |
15 | 15 | ||
@@ -25,10 +25,13 @@ MIPS_INSTRUCTION_SET = "mips" | |||
25 | ARM_INSTRUCTION_SET:armv5 = "arm" | 25 | ARM_INSTRUCTION_SET:armv5 = "arm" |
26 | ARM_INSTRUCTION_SET:armv4 = "arm" | 26 | ARM_INSTRUCTION_SET:armv4 = "arm" |
27 | 27 | ||
28 | # 1.2.4 doesn't support riscv32 | ||
29 | COMPATIBLE_HOST:riscv32 = "null" | ||
30 | |||
31 | # Enable out of tree build | 28 | # Enable out of tree build |
32 | B = "${WORKDIR}/build" | 29 | B = "${WORKDIR}/build" |
33 | 30 | ||
34 | do_configure[cleandirs] = "${B}" | 31 | do_configure[cleandirs] = "${B}" |
32 | |||
33 | python () { | ||
34 | multilibs = d.getVar("MULTILIBS") | ||
35 | if multilibs: | ||
36 | raise bb.parse.SkipRecipe("musl is not compatible with multilibs") | ||
37 | } | ||