janneke pushed a commit to branch hurd-team
in repository guix.

commit 8a26c747401226b6e942ab890fe2e605b6bd8680
Author: Janneke Nieuwenhuizen <jann...@gnu.org>
AuthorDate: Mon Nov 18 22:59:46 2024 +0100

    gnu: libedit: Fix [cross-]build with gcc-14 for 32bit.
    
    * gnu/packages/libedit.scm (libedit)[arguments]: When cross-compiling to a
    32bit host, add CFLAGS to #:configure-flags to disable a breaking warning.
    
    Change-Id: Ibab7332af162aed38158a50e9b4fc288b4286922
---
 gnu/packages/libedit.scm | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/gnu/packages/libedit.scm b/gnu/packages/libedit.scm
index f04d3aafe4..252f8a4966 100644
--- a/gnu/packages/libedit.scm
+++ b/gnu/packages/libedit.scm
@@ -4,6 +4,7 @@
 ;;; Copyright © 2018, 2019, 2020 Tobias Geerinckx-Rice <m...@tobias.gr>
 ;;; Copyright © 2019 Gábor Boskovits <boskov...@gmail.com>
 ;;; Copyright © 2020 Giacomo Leidi <goodoldp...@autistici.org>
+;;; Copyright © 2024 Janneke Nieuwenhuizen <jann...@gnu.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -21,8 +22,10 @@
 ;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
 
 (define-module (gnu packages libedit)
+  #:use-module (guix gexp)
   #:use-module (guix licenses)
   #:use-module (guix packages)
+  #:use-module (guix utils)
   #:use-module (guix download)
   #:use-module (guix build-system gnu)
   #:use-module (gnu packages ncurses))
@@ -39,6 +42,11 @@
       (sha256
        (base32 "0wch48nml28jj6ild889745dsg2agm7mpvrmbl1gi98nw6vjrf6v"))))
     (build-system gnu-build-system)
+    (arguments
+     (if (and (%current-target-system) (target-x86-32?))
+         (list #:configure-flags
+               #~(list "CFLAGS=-g -O2 -Wno-incompatible-pointer-types"))
+         '()))
     (inputs
      (list ncurses))
     (home-page "https://thrysoee.dk/editline/";)

Reply via email to