janneke pushed a commit to branch core-packages-team
in repository guix.

commit 845fa830268221ace489b3d1485c519a1ba2f2b0
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 7a1bc70cc5..1872c45eec 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -5705,7 +5705,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

Reply via email to