This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 3a3533826b gnu: libphidget: Fix compilation with GCC 14.
3a3533826b is described below
commit 3a3533826b2c68872c7fb966b2b8bc141164ea37
Author: Ludovic Courtès <[email protected]>
AuthorDate: Sat Feb 7 18:34:27 2026 +0100
gnu: libphidget: Fix compilation with GCC 14.
* gnu/packages/libphidget.scm (libphidget)[arguments]: New field.
Change-Id: I3a1ba11f684c19a4585327d0e146955e6c3bc655
Signed-off-by: Andreas Enge <[email protected]>
---
gnu/packages/libphidget.scm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/libphidget.scm b/gnu/packages/libphidget.scm
index edeeb5b408..ba08660804 100644
--- a/gnu/packages/libphidget.scm
+++ b/gnu/packages/libphidget.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2013 Ludovic Courtès <[email protected]>
+;;; Copyright © 2013, 2026 Ludovic Courtès <[email protected]>
;;; Copyright © 2018 Efraim Flashner <[email protected]>
;;; Copyright © 2020 Tobias Geerinckx-Rice <[email protected]>
;;;
@@ -19,6 +19,7 @@
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (gnu packages libphidget)
+ #:use-module (guix gexp)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix build-system gnu)
@@ -38,6 +39,9 @@
(sha256
(base32 "07w54dmr75vq2imngfy66nk1sxlvkzhl2p6g362q0a02f099jy0f"))))
(build-system gnu-build-system)
+ (arguments
+ (list #:configure-flags
+ #~(list "CFLAGS=-Wno-incompatible-pointer-types -O2 -g")))
(inputs (list libusb))
(outputs '("out" "debug"))
(home-page "https://www.phidgets.com/")