[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/58: gnu: elfutils: Fix build for 64bit Hurd.
From: |
guix-commits |
Subject: |
07/58: gnu: elfutils: Fix build for 64bit Hurd. |
Date: |
Sun, 24 Nov 2024 02:50:34 -0500 (EST) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit b35dd6015be225ade19956755f9c46733e4bfe31
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 b51632cfa4), guix-commits, 2024/11/24
- 01/58: gnu: gnumach: Update to v1.8+git20240714., guix-commits, 2024/11/24
- 11/58: gnu: libstdc++: Support the 64bit Hurd., guix-commits, 2024/11/24
- 10/58: gnu: libxcrypt: Support the 64bit Hurd., guix-commits, 2024/11/24
- 03/58: gnu: hurd: Update to 0.9.git20240714., guix-commits, 2024/11/24
- 06/58: gnu: bash-minimal: Support [cross-]build with gcc-14., guix-commits, 2024/11/24
- 07/58: gnu: elfutils: Fix build for 64bit Hurd.,
guix-commits <=
- 08/58: gnu: grep: Fix build for the 64bit Hurd., guix-commits, 2024/11/24
- 09/58: gnu: patch: Fix build for the 64bit Hurd., guix-commits, 2024/11/24
- 04/58: gnu: Add basic support for x86_64-pc-gnu target, aka 64bit Hurd., guix-commits, 2024/11/24
- 23/58: gnu: guile-lzlib: Support [cross-]build with gcc-14 and the 64bit Hurd., guix-commits, 2024/11/24
- 39/58: gnu: inetutils: Fix build for the 64bit Hurd., guix-commits, 2024/11/24
- 41/58: gnu: guile-fibers: Fix build for the 64bit Hurd., guix-commits, 2024/11/24
- 44/58: gnu: commencement: mig-boot0: Update to 1.8+git20231217.., guix-commits, 2024/11/24
- 47/58: gnu: gettext: Fix cross-build shebangs., guix-commits, 2024/11/24
- 50/58: system: examples: Add bare-hurd64.tmpl., guix-commits, 2024/11/24
- 58/58: gnu: commencement: gcc-final: Support the 64bit Hurd., guix-commits, 2024/11/24