[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/31: gnu: make: Support for the Hurd.
From: |
guix-commits |
Subject: |
11/31: gnu: make: Support for the Hurd. |
Date: |
Sun, 15 Mar 2020 14:23:10 -0400 (EDT) |
janneke pushed a commit to branch wip-hurd
in repository guix.
commit 0849b0ce9d83f4988c4628808ce00e0775e516b6
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 | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index 78e8aca..0307dc4 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -367,7 +367,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)
- branch wip-hurd created (now 06a526c), guix-commits, 2020/03/15
- 03/31: gnu: hurd: Fix hurd-target?, add hurd-system?., guix-commits, 2020/03/15
- 02/31: gnu: grub: Support for the Hurd., guix-commits, 2020/03/15
- 06/31: gnu: cross-libc: Build fix for the Hurd., guix-commits, 2020/03/15
- 10/31: gnu: java-jansi-native: Compile fix for the Hurd., guix-commits, 2020/03/15
- 07/31: Revert "gnu: guile-static-stripped: Update to 2.2.", guix-commits, 2020/03/15
- 14/31: gnu: commencement: hurd-minimal-boot0: Build from tarball., guix-commits, 2020/03/15
- 12/31: gnu: commencement: gnumach-headers-boot0: Build from tarball., guix-commits, 2020/03/15
- 04/31: gnu: glibc: Add and update patches for the Hurd., guix-commits, 2020/03/15
- 11/31: gnu: make: Support for the Hurd.,
guix-commits <=
- 13/31: gnu: commencement: hurd-headers-boot0: Build from tarball., guix-commits, 2020/03/15
- 09/31: gnu: bootstrap: Add support for the Hurd., guix-commits, 2020/03/15
- 19/31: gnu: commencement: glibc-final: Allow gnumach-headers references., guix-commits, 2020/03/15
- 01/31: gnu: flex-2.6.1: Build fix for the Hurd., guix-commits, 2020/03/15
- 05/31: gnu: glibc: Add signal SA_SIGINFO support for the Hurd., guix-commits, 2020/03/15
- 17/31: gnu: commencement: gnumach-headers-boot0: Update to 1.8-116-g28b53508., guix-commits, 2020/03/15
- 08/31: gnu: bootstrap: gcc-static: Use gcc-5., guix-commits, 2020/03/15
- 20/31: gnu: hurd: Update to hurd-headers version: 0.9-91a51672., guix-commits, 2020/03/15
- 21/31: daemon: Do not use clone on the Hurd., guix-commits, 2020/03/15
- 23/31: gnu: less: Build fix for the Hurd., guix-commits, 2020/03/15