[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
12/31: gnu: make: Support for the Hurd.
From: |
guix-commits |
Subject: |
12/31: gnu: make: Support for the Hurd. |
Date: |
Tue, 17 Mar 2020 13:36:13 -0400 (EDT) |
janneke pushed a commit to branch wip-hurd
in repository guix.
commit 95df35cf15f023c4501937bab0ff878809f247e0
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 d513325..8d95d0f 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 8e3e91e), guix-commits, 2020/03/17
- 03/31: gnu: hurd: Fix hurd-target?, add hurd-system?., guix-commits, 2020/03/17
- 02/31: gnu: grub: Support for the Hurd., guix-commits, 2020/03/17
- 01/31: gnu: flex-2.6.1: Build fix for the Hurd., guix-commits, 2020/03/17
- 04/31: gnu: glibc: Add clock patches for the Hurd., guix-commits, 2020/03/17
- 08/31: gnu: bootstrap: gcc-static: Use gcc-5., guix-commits, 2020/03/17
- 12/31: gnu: make: Support for the Hurd.,
guix-commits <=
- 10/31: gnu: bootstrap: Add support for the Hurd., guix-commits, 2020/03/17
- 14/31: gnu: commencement: hurd-headers-boot0: Build from tarball., guix-commits, 2020/03/17
- 16/31: gnu: commencement: glibc-intermediate: Build fixes for the Hurd., guix-commits, 2020/03/17
- 17/31: gnu: commencement: hurd-source: Update to latest git., guix-commits, 2020/03/17
- 20/31: gnu: hurd: Update to hurd-headers version: 0.9-91a51672., guix-commits, 2020/03/17
- 09/31: gnu: bootstrap: Use fall-back mechanism for bootstrap-executables., guix-commits, 2020/03/17
- 06/31: gnu: cross-libc: Build fix for the Hurd., guix-commits, 2020/03/17
- 07/31: Revert "gnu: guile-static-stripped: Update to 2.2.", guix-commits, 2020/03/17
- 11/31: gnu: java-jansi-native: Compile fix for the Hurd., guix-commits, 2020/03/17
- 13/31: gnu: commencement: gnumach-headers-boot0: Build from tarball., guix-commits, 2020/03/17