[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
15/30: gnu: commencement: glibc-intermediate: Build fixes for the Hurd.
From: |
guix-commits |
Subject: |
15/30: gnu: commencement: glibc-intermediate: Build fixes for the Hurd. |
Date: |
Sat, 21 Mar 2020 19:36:27 -0400 (EDT) |
janneke pushed a commit to branch wip-hurd
in repository guix.
commit 66ed3470d0350089b8ecb68ef010fc0429e60f25
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 7e3109f..446e326 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -3230,7 +3230,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
@@ -3241,13 +3243,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"
@@ -3268,7 +3271,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))
'())
- branch wip-hurd created (now a016b45), guix-commits, 2020/03/21
- 02/30: gnu: hurd: Fix hurd-target?, add hurd-system?., guix-commits, 2020/03/21
- 05/30: gnu: cross-libc: Build fix for the Hurd., guix-commits, 2020/03/21
- 08/30: gnu: bootstrap: Use fall-back mechanism for bootstrap-executables., guix-commits, 2020/03/21
- 01/30: gnu: grub: Support for the Hurd., guix-commits, 2020/03/21
- 11/30: gnu: make: Support for the Hurd., guix-commits, 2020/03/21
- 07/30: gnu: bootstrap: gcc-static: Use gcc-5., guix-commits, 2020/03/21
- 10/30: gnu: java-jansi-native: Compile fix for the Hurd., guix-commits, 2020/03/21
- 04/30: gnu: glibc: Add signal SA_SIGINFO support for the Hurd., guix-commits, 2020/03/21
- 15/30: gnu: commencement: glibc-intermediate: Build fixes for the Hurd.,
guix-commits <=
- 03/30: gnu: glibc: Add clock patches for the Hurd., guix-commits, 2020/03/21
- 12/30: gnu: commencement: gnumach-headers-boot0: Build from tarball., guix-commits, 2020/03/21
- 06/30: Revert "gnu: guile-static-stripped: Update to 2.2.", guix-commits, 2020/03/21
- 14/30: gnu: commencement: hurd-minimal-boot0: Build from tarball., guix-commits, 2020/03/21
- 13/30: gnu: commencement: hurd-headers-boot0: Build from tarball., guix-commits, 2020/03/21
- 16/30: gnu: commencement: hurd-source: Update to latest git., guix-commits, 2020/03/21
- 17/30: gnu: commencement: gnumach-headers-boot0: Update to 1.8-116-g28b53508., guix-commits, 2020/03/21
- 18/30: gnu: commencement: glibc-final: Allow gnumach-headers references., guix-commits, 2020/03/21
- 20/30: daemon: Do not use clone on the Hurd., guix-commits, 2020/03/21
- 22/30: gnu: less: Build fix for the Hurd., guix-commits, 2020/03/21