mailing list of musl libc
 help / color / mirror / code / Atom feed
* kernel header compatibility
@ 2016-11-09  1:11 Felix Janda
  2016-11-09  1:39 ` Rich Felker
  0 siblings, 1 reply; 7+ messages in thread
From: Felix Janda @ 2016-11-09  1:11 UTC (permalink / raw)
  To: musl

The recent commit 04983f2272382af92eb8f8838964ff944fbb8258 (make
netinet/in.h suppress clashing definitions from kernel headers)
intends to address some of the conflicts between the kernel and musl
libc headers. Namely it tries to allow the inclusion of kernel headers
after libc header by defining __UAP_DEF_* macros. However this doesn't
work because the relevant linux headers include <linux/libc-compat.h>,
which unconditionally redefines the constants. For example

#include <netinet/in.h>
#include <linux/in6.h>

leads to

#define __UAPI_DEF_IN_ADDR 0 // from <netinet/in.h>
#define __UAPI_DEF_IN_ADDR 1 // from <linux/libc-compat.h>

So we still get two conflicting definitions of struct in6_addr.


By adding the hack "#define _LIBC_COMPAT_H" to <netinet/in.h>, this
particular example compiles.


Maybe the kernel people can be convinced to add #ifdef guards around
all of the (non glibc) __UAPI_* definitions in <linux/libc-compat.h>.

Felix


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2016-11-10  9:21 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-09  1:11 kernel header compatibility Felix Janda
2016-11-09  1:39 ` Rich Felker
2016-11-09  1:54   ` Felix Janda
2016-11-09  2:14     ` Rich Felker
2016-11-10  1:28       ` Felix Janda
2016-11-10  4:39         ` Rich Felker
2016-11-10  9:21           ` Szabolcs Nagy

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).