Displaying 2 results from an estimated 2 matches for "using_uninstalled_kernel_headers".
2013 Dec 27
2
[PATCH] Update header locations for uapi & generated
H. Peter Anvin dixit:
>You should be using the output of "make headers_install" to build klibc.
Hm. Can we catch that somehow? Like?
#ifdef using_uninstalled_kernel_headers
# error Go RTFM!
#endif
? in the klibc sources, centrally somewhere? Ideally, a klibc
header that?d also be included when using klcc to build some?
thing, so that both klibc-build time and klibc-use time would
be caught.
bye,
//mirabilos
--
> Wish I had pine to hand :-( I'll give lynx a t...
2013 Dec 26
2
[PATCH] Update header locations for uapi & generated
In the v3.6 kernel, many of the headers were split out into a uapi variant.
klibc should be using those variants to compile.
There is also a generated subdir, to seperate out generated headers.
The old kernel header location needs to be included as well, because
linux/compiler.h is available only in the base include directory.
Signed-off-by: Robin H. Johnson <robbat2 at gentoo.org>
---