diff options
| author | John Kehayias <john.kehayias@protonmail.com> | 2025-08-11 21:34:34 -0400 |
|---|---|---|
| committer | Maxim Cournoyer <maxim@guixotic.coop> | 2025-09-30 16:48:17 +0900 |
| commit | 3e6d6db3d006afbec3eb2eb1ed8d50c55e3e4567 (patch) | |
| tree | f2bbfaf96bcd050c5b7b4ebc74e94d873d56d467 | |
| parent | 786fcc9fa2bfc3a120b544ec6ba7710a6ab875e4 (diff) | |
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
| -rw-r--r-- | gnu/packages/video.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index df37df64e65..cdab0147726 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 |
