[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
23/31: gnu: commencement: glibc-intermediate: Build fixes for the Hurd.
From: |
guix-commits |
Subject: |
23/31: gnu: commencement: glibc-intermediate: Build fixes for the Hurd. |
Date: |
Thu, 12 Mar 2020 02:59:09 -0400 (EDT) |
janneke pushed a commit to branch wip-hurd
in repository guix.
commit 68aa59c4da7ce156cd31a798d870548c1e7b0580
Author: Jan Nieuwenhuizen <address@hidden>
AuthorDate: Mon Mar 2 23:59:56 2020 -0500
gnu: commencement: glibc-intermediate: Build fixes for the Hurd.
* gnu/packages/commencement.scm (glibc-intermediate): Configure with
--disable-werror, update pthreads workaround.
---
gnu/packages/commencement.scm | 21 ++++++++++++---------
1 file changed, 12 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 760fe02..0473904 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -3236,7 +3236,9 @@ the bootstrap environment."
((#:configure-flags flags)
`(append (list ,(string-append "--host=" (boot-triplet))
,(string-append "--build="
- (nix-system->gnu-triplet)))
+ (nix-system->gnu-triplet))
+ ,(if (hurd-system?) "--disable-werror"
+ ""))
,flags))
((#:phases phases)
`(modify-phases ,phases
@@ -3247,13 +3249,14 @@ the bootstrap environment."
(unsetenv "CPATH")
;; Tell 'libpthread' where to find 'libihash' on Hurd
systems.
- ,@(if (hurd-triplet? (%current-system))
- `((substitute* "libpthread/Makefile"
- (("LDLIBS-pthread.so =.*")
- (string-append "LDLIBS-pthread.so = "
- (assoc-ref %build-inputs
"kernel-headers")
- "/lib/libihash.a\n"))))
- '())
+ ,@(if (hurd-system?)
+ '((substitute* '("sysdeps/mach/Makefile"
+ "sysdeps/mach/hurd/Makefile")
+ (("LDLIBS-pthread.so =.*")
+ (string-append "LDLIBS-pthread.so = "
+ (assoc-ref %build-inputs
"kernel-headers")
+ "/lib/libihash.a\n"))))
+ '())
;; 'rpcgen' needs native libc headers to be built.
(substitute* "sunrpc/Makefile"
@@ -3274,7 +3277,7 @@ the bootstrap environment."
,@(%boot1-inputs)
;; A native MiG is needed to build Glibc on Hurd.
- ,@(if (hurd-triplet? (%current-system))
+ ,@(if (hurd-system?)
`(("mig" ,mig-boot0))
'())
- 10/31: gnu: cross-libc: Build fix for the Hurd., (continued)
- 10/31: gnu: cross-libc: Build fix for the Hurd., guix-commits, 2020/03/12
- 12/31: gnu: coreutils: Remove libcap dependency for the Hurd., guix-commits, 2020/03/12
- 08/31: gnu: glibc: Add and update patches for the Hurd., guix-commits, 2020/03/12
- 13/31: gnu: pciutils: Build fixes for the Hurd., guix-commits, 2020/03/12
- 09/31: gnu: glibc: Add signal SA_SIGINFO support for the Hurd., guix-commits, 2020/03/12
- 02/31: gnu: grub: Support for the Hurd., guix-commits, 2020/03/12
- 16/31: gnu: screen: Build fix for the Hurd., guix-commits, 2020/03/12
- 11/31: gnu: shadow: Add linux-pam dependency for the Hurd., guix-commits, 2020/03/12
- 20/31: gnu: commencement: gnumach-headers-boot0: Build from tarball., guix-commits, 2020/03/12
- 26/31: gnu: commencement: static-bash-for-glibc: Hurd build fix., guix-commits, 2020/03/12
- 23/31: gnu: commencement: glibc-intermediate: Build fixes for the Hurd.,
guix-commits <=
- 15/31: gnu: inetutils: Support for the Hurd., guix-commits, 2020/03/12
- 27/31: gnu: commencement: glibc-final: Allow gnumach-headers references., guix-commits, 2020/03/12
- 28/31: gnu: hurd: Update to hurd-headers version: 0.9-91a51672., guix-commits, 2020/03/12
- 17/31: gnu: shadow: Build fix for the Hurd., guix-commits, 2020/03/12
- 19/31: gnu: commencement: gcc-boot0: Build fix for the Hurd., guix-commits, 2020/03/12
- 18/31: gnu: mit-krb5: Supprt for the Hurd., guix-commits, 2020/03/12
- 22/31: gnu: commencement: hurd-minimal-boot0: Build from tarball., guix-commits, 2020/03/12
- 14/31: gnu: shepherd: Build fix for the Hurd., guix-commits, 2020/03/12
- 21/31: gnu: commencement: hurd-headers-boot0: Build from tarball., guix-commits, 2020/03/12
- 30/31: daemon: Avoid kill -1 bug on the Hurd., guix-commits, 2020/03/12