mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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
This commit is contained in:
parent
ec7723a9cc
commit
b73e883863
1 changed files with 2 additions and 1 deletions
|
@ -1895,7 +1895,8 @@ audio/video codec library.")
|
||||||
(setenv
|
(setenv
|
||||||
"CFLAGS"
|
"CFLAGS"
|
||||||
(string-append "-g -O2"
|
(string-append "-g -O2"
|
||||||
" -Wno-error=incompatible-pointer-types")))))))
|
" -Wno-error=incompatible-pointer-types"
|
||||||
|
" -Wno-error=int-conversion")))))))
|
||||||
(package-arguments ffmpeg-7)))))
|
(package-arguments ffmpeg-7)))))
|
||||||
|
|
||||||
(define-public ffmpeg-5
|
(define-public ffmpeg-5
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue