guix_mirror_bot pushed a commit to branch core-packages-team in repository guix.
commit 86bb5e1a26245f0db3797a8043312047a707a463 Author: Janneke Nieuwenhuizen <jann...@gnu.org> AuthorDate: Fri Jan 3 18:13:11 2025 +0100 gnu: gf2x: Fix build with gcc-14. * gnu/packages/algebra.scm (gf2x)[arguments]: New field to relax gcc-14's strictness. Change-Id: I5891f800a47ff1b42d912d03111d29cb57afdf8c --- gnu/packages/algebra.scm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm index cf5287d57b..b8b2a7b864 100644 --- a/gnu/packages/algebra.scm +++ b/gnu/packages/algebra.scm @@ -19,6 +19,7 @@ ;;; Copyright © 2025 Sharlatan Hellseher <sharlata...@gmail.com> ;;; Copyright © 2025 Nigko Yerden <nigko.yer...@gmail.com> ;;; Copyright © 2025 Skylar Hill <stellarskyl...@posteo.net> +;;; Copyright © 2025 Janneke Nieuwenhuizen <jann...@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -135,6 +136,10 @@ multiplication routines such as Toom–Cook and the FFT.") (base32 "04g5jg0i4vz46b4w2dvbmahwzi3k6b8g515mfw7im1inc78s14id")))) (build-system gnu-build-system) + (arguments + (list + #:configure-flags + #~(list "CFLAGS=-g -O2 -Wno-error=implicit-function-declaration"))) (native-inputs (list autoconf automake libtool)) (synopsis "Arithmetic of polynomials over binary finite fields") (description