guix_mirror_bot pushed a commit to branch mesa-updates
in repository guix.
commit b73e883863013b78de3fa975f01f5caf6e225c3a
Author: John Kehayias <[email protected]>
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 2346aec3b7..f3a7cba266 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -1895,7 +1895,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