mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: libimobiledevice: Fix build with gcc-14.
* gnu/packages/libusb.scm (libimobiledevice)[arguments]: Add CFLAGS to #:configure-flags to relax gcc-14's strictness. Change-Id: If59a219f8044d80d5227abe7e7ab65484ef00de3
This commit is contained in:
parent
5030933bc6
commit
66bf1c2c68
1 changed files with 5 additions and 1 deletions
|
@ -16,6 +16,7 @@
|
||||||
;;; Copyright © 2023 Sharlatan Hellseher <sharlatanus@gmail.com>
|
;;; Copyright © 2023 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||||
;;; Copyright © 2023 Foundation Devices, Inc. <hello@foundationdevices.com>
|
;;; Copyright © 2023 Foundation Devices, Inc. <hello@foundationdevices.com>
|
||||||
;;; Copyright © 2024 hapster <o.rojon@posteo.net>
|
;;; Copyright © 2024 hapster <o.rojon@posteo.net>
|
||||||
|
;;; Copyright © 2025 Janneke Nieuwenhuizen <janneke@gnu.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -552,7 +553,10 @@ connections from and to iOS devices by connecting to a socket provided by a
|
||||||
"1xmhfnypg6j7shl73wfkrrn4mj9dh8qzaj3258q9zkb5cc669wjk"))))
|
"1xmhfnypg6j7shl73wfkrrn4mj9dh8qzaj3258q9zkb5cc669wjk"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:configure-flags '("PYTHON_VERSION=3")))
|
(list
|
||||||
|
#:configure-flags
|
||||||
|
#~(list "CFLAGS=-g -O2 -Wno-error=int-conversion"
|
||||||
|
"PYTHON_VERSION=3")))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list openssl libplist libusbmuxd))
|
(list openssl libplist libusbmuxd))
|
||||||
(inputs
|
(inputs
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue