guix_mirror_bot pushed a commit to branch core-packages-team in repository guix.
commit 46dc7946c8dd2a8cb4113c76f039c4974ee3688b Author: Janneke Nieuwenhuizen <[email protected]> AuthorDate: Tue Dec 31 21:21:24 2024 +0100 gnu: libmpeg3: Fix build with gcc-14. * gnu/packages/video.scm (libmpeg3)[arguments]: Add CC to #:make-flags to relax gcc-14's strictness. Change-Id: I05efa8f3d0c67bc818913f964673a4074e371b53 --- gnu/packages/video.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index de63fcc3b7..9e6a5e710d 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -736,6 +736,7 @@ touchscreen devices and the ability to apply filters to their input events.") `(#:test-target "test" #:make-flags (list + "CC=gcc -g -O2 -Wno-error=implicit-function-declaration" (string-append "A52DIR=" (assoc-ref %build-inputs "liba52")) (string-append "DST=" (assoc-ref %outputs "out") "/bin")) #:phases
