guix_mirror_bot pushed a commit to branch mesa-updates
in repository guix.

commit 51f36c41b932b9ebefa684aac64a5c27a24b169a
Author: John Kehayias <john.kehay...@protonmail.com>
AuthorDate: Mon Aug 11 21:34:34 2025 -0400

    gnu: ffmpeg@6: Fix build with gcc-14 on i686-linux.
    
    Without turning off this error, the build fails on some Vulkan related code.
    
    * gnu/packages/video.scm (ffmpeg)[arguments]<#:phases>: In
    relax-gcc-14-strictness phase, add -Wno-error=int-conversion to CFLAGS.
    
    Change-Id: I3b0d0f5cbc80aae7b4b164b9a17bd0d8804c9fdd
---
 gnu/packages/video.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 4853781a1b..d062aa9b5c 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -1894,7 +1894,8 @@ audio/video codec library.")
                     (setenv
                      "CFLAGS"
                      (string-append "-g -O2"
-                                    " 
-Wno-error=incompatible-pointer-types")))))))
+                                    " -Wno-error=incompatible-pointer-types"
+                                    " -Wno-error=int-conversion")))))))
          (package-arguments ffmpeg-7)))))
 
 (define-public ffmpeg-5

Reply via email to