1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: femtolisp: Fix build with gcc-14.

* gnu/packages/scheme.scm (femtolisp): Fix build with gcc-14.
[arguments]<#:phases>: Add "relax-gcc-14-strictness" phase.

Change-Id: I7d5502057bc41654de6043ebd964f482a9187e46
This commit is contained in:
Artyom V. Poptsov
2025-11-15 20:46:52 +03:00
parent 34bc2ce8ed
commit cd6adc26cc

View File

@@ -25,7 +25,7 @@
;;; Copyright © 2023, 2024 Juliana Sims <juli@incana.org>
;;; Copyright © 2023 Maxim Cournoyer <maxim@guixotic.coop>
;;; Copyright © 2024 Skylar Hill <stellarskylark@posteo.net>
;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
;;; Copyright © 2024, 2025 Artyom V. Poptsov <poptsov.artyom@gmail.com>
;;; Copyright © 2024 Zheng Junjie <873216071@qq.com>
;;; Copyright © 2024 Adam Faiz <adam.faiz@disroot.org>
;;; Copyright © 2024, 2025 Zhu Zihao <all_but_last@163.com>
@@ -1063,6 +1063,9 @@ comprehensible public-domain interpreter for R4RS Scheme offering:
(modify-phases %standard-phases
(delete 'bootstrap)
(delete 'configure) ; No configure script
(add-before 'build 'relax-gcc-14-strictness
(lambda _
(setenv "CFLAGS" "-Wno-error=implicit-function-declaration")))
(replace 'install ; Makefile has no 'install phase
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))