distro: Add required Linux-Libre headers to the glibc tarball.
* distro/packages/base.scm (%glibc-stripped): Include required headers from Linux-Libre.
This commit is contained in:
parent
3f8de86dec
commit
827a3087da
|
@ -2274,7 +2274,8 @@ store.")
|
||||||
(let* ((out (assoc-ref %outputs "out"))
|
(let* ((out (assoc-ref %outputs "out"))
|
||||||
(libdir (string-append out "/lib"))
|
(libdir (string-append out "/lib"))
|
||||||
(incdir (string-append out "/include"))
|
(incdir (string-append out "/include"))
|
||||||
(libc (assoc-ref %build-inputs "libc")))
|
(libc (assoc-ref %build-inputs "libc"))
|
||||||
|
(linux (assoc-ref %build-inputs "linux-headers")))
|
||||||
(mkdir-p libdir)
|
(mkdir-p libdir)
|
||||||
(for-each (lambda (file)
|
(for-each (lambda (file)
|
||||||
(let ((target (string-append libdir "/"
|
(let ((target (string-append libdir "/"
|
||||||
|
@ -2285,8 +2286,30 @@ store.")
|
||||||
"^(crt.*|ld.*|lib(c|m|dl|rt|pthread|nsl|util).*\\.so(\\..*)?|libc_nonshared\\.a)$"))
|
"^(crt.*|ld.*|lib(c|m|dl|rt|pthread|nsl|util).*\\.so(\\..*)?|libc_nonshared\\.a)$"))
|
||||||
|
|
||||||
(copy-recursively (string-append libc "/include") incdir)
|
(copy-recursively (string-append libc "/include") incdir)
|
||||||
|
|
||||||
|
;; Copy some of the Linux-Libre headers that glibc headers
|
||||||
|
;; refer to.
|
||||||
|
(mkdir (string-append incdir "/linux"))
|
||||||
|
(for-each (lambda (file)
|
||||||
|
(copy-file (string-append linux "/include/linux/" file)
|
||||||
|
(string-append incdir "/linux/"
|
||||||
|
(basename file))))
|
||||||
|
'("limits.h" "errno.h" "socket.h" "kernel.h"
|
||||||
|
"sysctl.h" "param.h"))
|
||||||
|
|
||||||
|
(mkdir (string-append incdir "/asm"))
|
||||||
|
(for-each (lambda (file)
|
||||||
|
(copy-file (string-append linux "/include/asm/" file)
|
||||||
|
(string-append incdir "/asm/"
|
||||||
|
(basename file))))
|
||||||
|
'("types.h" "unistd.h" "ioctls.h" "socket.h"
|
||||||
|
"param.h" "errno.h"))
|
||||||
|
|
||||||
|
(copy-recursively (string-append linux "/include/asm-generic")
|
||||||
|
(string-append incdir "/asm-generic"))
|
||||||
#t))))
|
#t))))
|
||||||
(inputs `(("libc" ,glibc-final)))))
|
(inputs `(("libc" ,glibc-final)
|
||||||
|
("linux-headers" ,linux-libre-headers)))))
|
||||||
|
|
||||||
(define %gcc-static
|
(define %gcc-static
|
||||||
;; A statically-linked GCC, with stripped-down functionality.
|
;; A statically-linked GCC, with stripped-down functionality.
|
||||||
|
|
Loading…
Reference in New Issue