From b1da9ac43751a193b2e0a347b35dfe3bd0239339 Mon Sep 17 00:00:00 2001 From: John Kehayias Date: Mon, 11 Aug 2025 21:34:34 -0400 Subject: [PATCH] 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 4853781a1ba..d062aa9b5c8 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