[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/51: gnu: elfutils: Fix build for 64bit Hurd.
From: |
guix-commits |
Subject: |
07/51: gnu: elfutils: Fix build for 64bit Hurd. |
Date: |
Mon, 18 Nov 2024 18:13:20 -0500 (EST) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit d018871bfe1d12b6eeabfa6a4593395113c468e2
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Sun Nov 3 16:39:20 2024 +0100
gnu: elfutils: Fix build for 64bit Hurd.
* gnu/packages/elf.scm (elfutils)[arguments]: When building for a 64bit
Hurd,
set #:make-flags.
Change-Id: I00abf360a7de5b1f78c1e912f0dcf27c62c1af68
---
gnu/packages/elf.scm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/elf.scm b/gnu/packages/elf.scm
index 119f8d13dd..81a753a483 100644
--- a/gnu/packages/elf.scm
+++ b/gnu/packages/elf.scm
@@ -10,7 +10,7 @@
;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
;;; Copyright © 2021 Leo Le Bouter <lle-bout@zaclys.net>
;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
-;;; Copyright © 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
+;;; Copyright © 2023, 2024 Janneke Nieuwenhuizen <janneke@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -86,6 +86,10 @@
"--disable-libdebuginfod"
"--disable-debuginfod")
+ ,@(if (target-hurd64?)
+ '(#:make-flags '("core-file_no_Werror=yes"))
+ '())
+
;; Disable tests on MIPS and PowerPC (without changing
;; the arguments list on other systems).
,@(if (any (cute string-prefix? <> (or (%current-target-system)
- branch hurd-team created (now c7db5d435d), guix-commits, 2024/11/18
- 01/51: gnu: gnumach: Update to v1.8+git20240714., guix-commits, 2024/11/18
- 02/51: gnu: mig: Update to 1.8+git20231217., guix-commits, 2024/11/18
- 07/51: gnu: elfutils: Fix build for 64bit Hurd.,
guix-commits <=
- 10/51: gnu: libxcrypt: Support the 64bit Hurd., guix-commits, 2024/11/18
- 11/51: gnu: libstdc++: Support the 64bit Hurd., guix-commits, 2024/11/18
- 03/51: gnu: hurd: Update to 0.9.git20240714., guix-commits, 2024/11/18
- 04/51: gnu: Add basic support for x86_64-pc-gnu target, aka 64bit Hurd., guix-commits, 2024/11/18
- 05/51: gnu: cross-libc: Support cross-building for the 64bit Hurd., guix-commits, 2024/11/18
- 06/51: gnu: bash-minimal: Support [cross-]build with gcc-14., guix-commits, 2024/11/18
- 14/51: gnu: git-minimal: Support [cross-]build with gcc-14 and the 64bit Hurd., guix-commits, 2024/11/18
- 16/51: gnu: libffi: Fix [cross-]build with gcc-14., guix-commits, 2024/11/18
- 29/51: gnu: pciutils: Support the 64bit Hurd., guix-commits, 2024/11/18
- 21/51: gnu: libedit: Fix [cross-]build with gcc-14 for 32bit., guix-commits, 2024/11/18