[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/27: gnu: elfutils: Fix build for 64bit Hurd.
From: |
guix-commits |
Subject: |
07/27: gnu: elfutils: Fix build for 64bit Hurd. |
Date: |
Tue, 3 Dec 2024 02:41:13 -0500 (EST) |
janneke pushed a commit to branch master
in repository guix.
commit 43ba6d2a0d9f8a697c6d70c6ab7ae3ee18a31552
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 master updated (5cb84f2013 -> ec8a5ec15f), guix-commits, 2024/12/03
- 04/27: gnu: Add basic support for x86_64-pc-gnu target, aka 64bit Hurd., guix-commits, 2024/12/03
- 07/27: gnu: elfutils: Fix build for 64bit Hurd.,
guix-commits <=
- 06/27: gnu: bash-minimal: Support [cross-]build with gcc-14., guix-commits, 2024/12/03
- 15/27: gnu: flex: Fix [cross-]build with gcc-14., guix-commits, 2024/12/03
- 01/27: gnu: gnumach: Update to v1.8+git20240714., guix-commits, 2024/12/03
- 03/27: gnu: hurd: Update to 0.9.git20240714., guix-commits, 2024/12/03
- 05/27: gnu: cross-libc: Support cross-building for the 64bit Hurd., guix-commits, 2024/12/03
- 02/27: gnu: mig: Update to 1.8+git20231217., guix-commits, 2024/12/03
- 08/27: gnu: grep: Fix build for the 64bit Hurd., guix-commits, 2024/12/03
- 10/27: gnu: libxcrypt: Support the 64bit Hurd., guix-commits, 2024/12/03
- 11/27: gnu: libstdc++: Support the 64bit Hurd., guix-commits, 2024/12/03
- 09/27: gnu: patch: Fix build for the 64bit Hurd., guix-commits, 2024/12/03