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 22:58:00 +0000 |
commit | e93f5f7c15cd46a38f2e6b1b1d96cd81880f030a (patch) | |
tree | 232912f21577578a07d61c83e3d09a5531878e1c | |
parent | 2c5135f2106842e1b5ef880a08dbd4e50c9e0d04 (diff) | |
download | openembedded-core-e93f5f7c15cd46a38f2e6b1b1d96cd81880f030a.tar.gz openembedded-core-e93f5f7c15cd46a38f2e6b1b1d96cd81880f030a.tar.bz2 openembedded-core-e93f5f7c15cd46a38f2e6b1b1d96cd81880f030a.zip |
world-broken: Add packages broken on musl
These 14 packages are failing aross all architectures
on musl targets.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 @@ # Exclude known broken packages # +# rt-tests needs PI mutex support in libc +EXCLUDE_FROM_WORLD_pn-rt-tests_libc-musl = "1" +# error: no member named 'sin_port' in 'struct sockaddr_in6' +# this is due to libtirpc using ipv6 but portmap rpc expecting ipv4 +EXCLUDE_FROM_WORLD_pn-portmap_libc-musl = "1" +EXCLUDE_FROM_WORLD_pn-unfs3_libc-musl = "1" + +# error: use of undeclared identifier '_STAT_VER' +EXCLUDE_FROM_WORLD_pn-pseudo_libc-musl = "1" + +# error: Need to implement custom I/O +EXCLUDE_FROM_WORLD_pn-libsolv_libc-musl = "1" + +# undefined reference to `pthread_tryjoin_np' +EXCLUDE_FROM_WORLD_pn-btrfs-tools_libc-musl = "1" + +# error: error.h: No such file or directory +EXCLUDE_FROM_WORLD_pn-prelink_libc-musl = "1" + +# error: use of undeclared identifier 'O_CREAT' +EXCLUDE_FROM_WORLD_pn-libbsd_libc-musl = "1" + +# error: expected declaration specifiers before '__nonnull' +EXCLUDE_FROM_WORLD_pn-lttng-ust_libc-musl = "1" +EXCLUDE_FROM_WORLD_pn-lttng-tools_libc-musl = "1" + +# error: obstack.h: No such file or directory +EXCLUDE_FROM_WORLD_pn-systemtap_libc-musl = "1" +EXCLUDE_FROM_WORLD_pn-systemtap-uprobes_libc-musl = "1" + +# error: a parameter list without types is only allowed in a function definition +# void (*_function)(sigval_t); +EXCLUDE_FROM_WORLD_pn-qemu_libc-musl = "1" + +# glibc specific funcrions +# error: storage size of 'mi' isn't known struct mallinfo mi +EXCLUDE_FROM_WORLD_pn-valgrind_libc-musl = "1" + +# error: format '%s' expects argument of type 'char *', but argument 4 has type 'int' [-Werror=format=] +# snprintf(buf, size, "%s", strerror_r(err, sbuf, sizeof(sbuf))); +EXCLUDE_FROM_WORLD_pn-perf_libc-musl = "1" + +# error: 'RTLD_NEXT' was not declared in this scope +EXCLUDE_FROM_WORLD_pn-gcc-sanitizers_libc-musl = "1" |