janneke pushed a commit to branch core-packages-team
in repository guix.
commit 37e1d6f6c23ba44c9db213a87d896705d00a0a9a
Author: Janneke Nieuwenhuizen <[email protected]>
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 76d3e80433..1de6420fc0 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -5717,7 +5717,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