andreas pushed a commit to branch core-packages-team in repository guix. commit 9d950ff85c378495cbf6d86efc5a299e57efb779 Author: Janneke Nieuwenhuizen <jann...@gnu.org> AuthorDate: Tue Dec 31 09:45:31 2024 +0100
gnu: gavl: Fix build by using gcc-13. Even using -fpermissive doesn't fix the build with gcc-14. * gnu/packages/video.scm (gavl)[native-inputs]: Add gcc-13. Change-Id: Ie22688d7c265b994715e346520cd9a045351eb16 --- 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 d0cf0fb572..77ae3dc414 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -5678,7 +5678,8 @@ to newbies and professionals alike.") (arguments '(#:configure-flags '("LIBS=-lm"))) (native-inputs - (list pkg-config doxygen)) + ;; Avoid gcc-14's: error: SSE register return with SSE disabled + (list gcc-13 pkg-config doxygen)) (home-page "https://gmerlin.sourceforge.net") (synopsis "Low level library for multimedia API building") (description