[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/33: gnu: make: Support for the Hurd.
From: |
guix-commits |
Subject: |
05/33: gnu: make: Support for the Hurd. |
Date: |
Fri, 13 Mar 2020 02:45:50 -0400 (EDT) |
janneke pushed a commit to branch wip-hurd
in repository guix.
commit 95bd54d3e585975796d58399b6df4b0815e52ca9
Author: Jan Nieuwenhuizen <address@hidden>
AuthorDate: Wed Feb 26 20:22:18 2020 -0500
gnu: make: Support for the Hurd.
* gnu/packages/base.scm (gnu-make): Use fork/exec rather than posix_spawn on
the Hurd. Also, add __alloca linkage workaround.
---
gnu/packages/base.scm | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index f048e4b..7d645f8 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -6,7 +6,7 @@
;;; Copyright © 2014 Alex Kost <address@hidden>
;;; Copyright © 2014, 2015 Manolis Fragkiskos Ragkousis <address@hidden>
;;; Copyright © 2016, 2017, 2019, 2020 Efraim Flashner <address@hidden>
-;;; Copyright © 2016 Jan Nieuwenhuizen <address@hidden>
+;;; Copyright © 2016, 2020 Jan (janneke) Nieuwenhuizen <address@hidden>
;;; Copyright © 2016, 2018 Alex Vong <address@hidden>
;;; Copyright © 2017 Rene Saavedra <address@hidden>
;;; Copyright © 2017, 2020 Mathieu Othacehe <address@hidden>
@@ -365,7 +365,11 @@ functionality beyond that which is outlined in the POSIX
standard.")
(inputs `(("guile" ,guile-3.0)))
(outputs '("out" "debug"))
(arguments
- '(#:phases
+ `(,@(if (hurd-target?)
+ '(#:configure-flags '("CFLAGS=-D__alloca=alloca"
+ "ac_cv_func_posix_spawn=no"))
+ '())
+ #:phases
(modify-phases %standard-phases
(add-before 'build 'set-default-shell
(lambda* (#:key inputs #:allow-other-keys)
- 08/33: gnu: glibc: Add and update patches for the Hurd., (continued)
- 08/33: gnu: glibc: Add and update patches for the Hurd., guix-commits, 2020/03/13
- 20/33: gnu: commencement: gnumach-headers-boot0: Build from tarball., guix-commits, 2020/03/13
- 24/33: gnu: commencement: hurd-source: Update to latest git., guix-commits, 2020/03/13
- 23/33: gnu: commencement: glibc-intermediate: Build fixes for the Hurd., guix-commits, 2020/03/13
- 28/33: gnu: hurd: Update to hurd-headers version: 0.9-91a51672., guix-commits, 2020/03/13
- 25/33: gnu: commencement: gnumach-headers-boot0: Update to 1.8-116-g28b53508., guix-commits, 2020/03/13
- 29/33: daemon: Do not use clone on the Hurd., guix-commits, 2020/03/13
- 32/33: gnu: bootstrap: gcc-static: Use gcc-5., guix-commits, 2020/03/13
- 33/33: DRAFT gnu: bootstrap: Add support for the Hurd., guix-commits, 2020/03/13
- 16/33: gnu: screen: Build fix for the Hurd., guix-commits, 2020/03/13
- 05/33: gnu: make: Support for the Hurd.,
guix-commits <=
- 02/33: gnu: grub: Support for the Hurd., guix-commits, 2020/03/13
- 12/33: gnu: coreutils: Remove libcap dependency for the Hurd., guix-commits, 2020/03/13
- 07/33: gnu: fontconfig: Build fix for the Hurd., guix-commits, 2020/03/13
- 09/33: gnu: glibc: Add signal SA_SIGINFO support for the Hurd., guix-commits, 2020/03/13
- 14/33: gnu: shepherd: Build fix for the Hurd., guix-commits, 2020/03/13
- 21/33: gnu: commencement: hurd-headers-boot0: Build from tarball., guix-commits, 2020/03/13
- 22/33: gnu: commencement: hurd-minimal-boot0: Build from tarball., guix-commits, 2020/03/13
- 26/33: gnu: commencement: static-bash-for-glibc: Hurd build fix., guix-commits, 2020/03/13
- 27/33: gnu: commencement: glibc-final: Allow gnumach-headers references., guix-commits, 2020/03/13
- 18/33: gnu: mit-krb5: Supprt for the Hurd., guix-commits, 2020/03/13