janneke pushed a commit to branch core-packages-team
in repository guix.
commit e1511b588e13f451282155e8edabbf189af5ad39
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 b1828dccca..47c92f5e12 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -5702,7 +5702,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