guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

107/246: gnu: transcode: Fix build with gcc-14.


From: guix-commits
Subject: 107/246: gnu: transcode: Fix build with gcc-14.
Date: Fri, 10 Jan 2025 10:47:32 -0500 (EST)

janneke pushed a commit to branch core-packages-team
in repository guix.

commit 594af9113ca34f3f190e1a20b3fa801c1cb62cdb
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Tue Dec 31 23:13:43 2024 +0100

    gnu: transcode: Fix build with gcc-14.
    
    * gnu/packages/video.scm (transcode)[arguments]: Extend CFLAGS to relax
    gcc-14's strictness.
    
    Change-Id: I48bdf9f98297e49f3529264ffd914125b18f50cc
---
 gnu/packages/video.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 087c576827..e568926ce8 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -314,7 +314,9 @@ user has installed.")
     (arguments
      `(#:configure-flags
        (list
-        "CFLAGS=-O2 -g -fcommon"
+        ,(string-append "CFLAGS=-O2 -g -fcommon"
+                        " -Wno-error=implicit-function-declaration"
+                        " -Wno-error=int-conversion")
         ;; XXX: Broken API.
         ;; Undeclared variables 'sys_nerr' and 'sys_errlist'.
         ;; "--enable-libv4l2"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]