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

commit 6f518e9822cc8816e8287f4d20e1c9b63d2cfdf0
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 e7561c843b..1026f190d9 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