diff options
author | Khem Raj <raj.khem@gmail.com> | 2016-03-19 09:13:40 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-20 23:12:31 +0000 |
commit | f148a2e95e44e8b90a41a53588a8869e0773eed4 (patch) | |
tree | dc975906f7ce9d9b0c592a12a41d2d8a03d0cfe8 /meta | |
parent | 624ca6aa5012a69653c6e0ce63ac930a98e20745 (diff) | |
download | poky-f148a2e95e44e8b90a41a53588a8869e0773eed4.tar.gz |
world-broken: Add packages broken on musl
These 14 packages are failing aross all architectures
on musl targets.
(From OE-Core rev: e93f5f7c15cd46a38f2e6b1b1d96cd81880f030a)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/conf/distro/include/world-broken.inc | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/meta/conf/distro/include/world-broken.inc b/meta/conf/distro/include/world-broken.inc index ab0c2dc863..a5f6371d31 100644 --- a/meta/conf/distro/include/world-broken.inc +++ b/meta/conf/distro/include/world-broken.inc | |||
@@ -2,4 +2,48 @@ | |||
2 | # Exclude known broken packages | 2 | # Exclude known broken packages |
3 | # | 3 | # |
4 | 4 | ||
5 | # rt-tests needs PI mutex support in libc | ||
6 | EXCLUDE_FROM_WORLD_pn-rt-tests_libc-musl = "1" | ||
5 | 7 | ||
8 | # error: no member named 'sin_port' in 'struct sockaddr_in6' | ||
9 | # this is due to libtirpc using ipv6 but portmap rpc expecting ipv4 | ||
10 | EXCLUDE_FROM_WORLD_pn-portmap_libc-musl = "1" | ||
11 | EXCLUDE_FROM_WORLD_pn-unfs3_libc-musl = "1" | ||
12 | |||
13 | # error: use of undeclared identifier '_STAT_VER' | ||
14 | EXCLUDE_FROM_WORLD_pn-pseudo_libc-musl = "1" | ||
15 | |||
16 | # error: Need to implement custom I/O | ||
17 | EXCLUDE_FROM_WORLD_pn-libsolv_libc-musl = "1" | ||
18 | |||
19 | # undefined reference to `pthread_tryjoin_np' | ||
20 | EXCLUDE_FROM_WORLD_pn-btrfs-tools_libc-musl = "1" | ||
21 | |||
22 | # error: error.h: No such file or directory | ||
23 | EXCLUDE_FROM_WORLD_pn-prelink_libc-musl = "1" | ||
24 | |||
25 | # error: use of undeclared identifier 'O_CREAT' | ||
26 | EXCLUDE_FROM_WORLD_pn-libbsd_libc-musl = "1" | ||
27 | |||
28 | # error: expected declaration specifiers before '__nonnull' | ||
29 | EXCLUDE_FROM_WORLD_pn-lttng-ust_libc-musl = "1" | ||
30 | EXCLUDE_FROM_WORLD_pn-lttng-tools_libc-musl = "1" | ||
31 | |||
32 | # error: obstack.h: No such file or directory | ||
33 | EXCLUDE_FROM_WORLD_pn-systemtap_libc-musl = "1" | ||
34 | EXCLUDE_FROM_WORLD_pn-systemtap-uprobes_libc-musl = "1" | ||
35 | |||
36 | # error: a parameter list without types is only allowed in a function definition | ||
37 | # void (*_function)(sigval_t); | ||
38 | EXCLUDE_FROM_WORLD_pn-qemu_libc-musl = "1" | ||
39 | |||
40 | # glibc specific funcrions | ||
41 | # error: storage size of 'mi' isn't known struct mallinfo mi | ||
42 | EXCLUDE_FROM_WORLD_pn-valgrind_libc-musl = "1" | ||
43 | |||
44 | # error: format '%s' expects argument of type 'char *', but argument 4 has type 'int' [-Werror=format=] | ||
45 | # snprintf(buf, size, "%s", strerror_r(err, sbuf, sizeof(sbuf))); | ||
46 | EXCLUDE_FROM_WORLD_pn-perf_libc-musl = "1" | ||
47 | |||
48 | # error: 'RTLD_NEXT' was not declared in this scope | ||
49 | EXCLUDE_FROM_WORLD_pn-gcc-sanitizers_libc-musl = "1" | ||