[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/30: gnu: make: Support for the Hurd.
From: |
guix-commits |
Subject: |
11/30: gnu: make: Support for the Hurd. |
Date: |
Sat, 21 Mar 2020 19:36:26 -0400 (EDT) |
janneke pushed a commit to branch wip-hurd
in repository guix.
commit 270f2def008086cd13eb8d73e6fc6ca30f436750
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 5c976ae..aa52002 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -369,7 +369,11 @@ 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 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 <=
- 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, 2020/03/21
- 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