mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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
This commit is contained in:
parent
883869970c
commit
b2a9eb5c9e
1 changed files with 8 additions and 0 deletions
|
@ -4,6 +4,7 @@
|
|||
;;; Copyright © 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;; Copyright © 2019 Gábor Boskovits <boskovits@gmail.com>
|
||||
;;; Copyright © 2020 Giacomo Leidi <goodoldpaul@autistici.org>
|
||||
;;; Copyright © 2024 Janneke Nieuwenhuizen <janneke@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/")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue