andreas pushed a commit to branch core-packages-team
in repository guix.
commit d48eeb738a218f8e16074b2aa67d8503c922a612
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 e81828df26..6ef1dfb3c4 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