diff options
| author | Janneke Nieuwenhuizen <janneke@gnu.org> | 2025-01-01 12:35:20 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:19 +0200 |
| commit | 66bf1c2c6816a3a8ad9bf6fb041daf6b160baea3 (patch) | |
| tree | 6a772b3708589c9e2524d99d74084a09f59973bb /gnu/packages/libusb.scm | |
| parent | 5030933bc6c0de223f2cb55b32b38bc5fa39c724 (diff) | |
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
Diffstat (limited to 'gnu/packages/libusb.scm')
| -rw-r--r-- | gnu/packages/libusb.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/libusb.scm b/gnu/packages/libusb.scm index a6e24f8c414..eb6dc9a844a 100644 --- a/gnu/packages/libusb.scm +++ b/gnu/packages/libusb.scm | |||
| @@ -16,6 +16,7 @@ | |||
| 16 | ;;; Copyright © 2023 Sharlatan Hellseher <sharlatanus@gmail.com> | 16 | ;;; Copyright © 2023 Sharlatan Hellseher <sharlatanus@gmail.com> |
| 17 | ;;; Copyright © 2023 Foundation Devices, Inc. <hello@foundationdevices.com> | 17 | ;;; Copyright © 2023 Foundation Devices, Inc. <hello@foundationdevices.com> |
| 18 | ;;; Copyright © 2024 hapster <o.rojon@posteo.net> | 18 | ;;; Copyright © 2024 hapster <o.rojon@posteo.net> |
| 19 | ;;; Copyright © 2025 Janneke Nieuwenhuizen <janneke@gnu.org> | ||
| 19 | ;;; | 20 | ;;; |
| 20 | ;;; This file is part of GNU Guix. | 21 | ;;; This file is part of GNU Guix. |
| 21 | ;;; | 22 | ;;; |
| @@ -552,7 +553,10 @@ connections from and to iOS devices by connecting to a socket provided by a | |||
| 552 | "1xmhfnypg6j7shl73wfkrrn4mj9dh8qzaj3258q9zkb5cc669wjk")))) | 553 | "1xmhfnypg6j7shl73wfkrrn4mj9dh8qzaj3258q9zkb5cc669wjk")))) |
| 553 | (build-system gnu-build-system) | 554 | (build-system gnu-build-system) |
| 554 | (arguments | 555 | (arguments |
| 555 | '(#:configure-flags '("PYTHON_VERSION=3"))) | 556 | (list |
| 557 | #:configure-flags | ||
| 558 | #~(list "CFLAGS=-g -O2 -Wno-error=int-conversion" | ||
| 559 | "PYTHON_VERSION=3"))) | ||
| 556 | (propagated-inputs | 560 | (propagated-inputs |
| 557 | (list openssl libplist libusbmuxd)) | 561 | (list openssl libplist libusbmuxd)) |
| 558 | (inputs | 562 | (inputs |
