diff options
| author | Janneke Nieuwenhuizen <janneke@gnu.org> | 2026-02-16 20:32:04 +0100 |
|---|---|---|
| committer | Janneke Nieuwenhuizen <janneke@gnu.org> | 2026-02-16 20:53:54 +0100 |
| commit | 63e73f3c90876121eddef9adfed017842d84177b (patch) | |
| tree | 5eacd7b1e92088623370c1172c4ace4e7f43fe13 /gnu/packages | |
| parent | 366046a775c1950d4004173c43ebf15ef84b1765 (diff) | |
gnu: make-bootstrap: Fix guile-static for the 64-bit Hurd.
* gnu/packages/make-bootstrap.scm (make-guile-static): When building for the
64-bit Hurd, add CFLAGS to #:configure-flags to relax gcc-14's strictness.
Change-Id: If283ea35bfbca327c2b01b4340eef5b5bbf72c87
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/make-bootstrap.scm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm index 16a20271421..b8651b61abb 100644 --- a/gnu/packages/make-bootstrap.scm +++ b/gnu/packages/make-bootstrap.scm @@ -3,7 +3,7 @@ ;;; Copyright © 2017, 2021 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2018, 2019 Mark H Weaver <mhw@netris.org> -;;; Copyright © 2018, 2019, 2021, 2022, 2023 Jan (janneke) Nieuwenhuizen <janneke@gnu.org> +;;; Copyright © 2018, 2019, 2021-2023, 2026 Janneke Nieuwenhuizen <janneke@gnu.org> ;;; Copyright © 2019, 2020, 2022 Marius Bakke <marius@gnu.org> ;;; Copyright © 2020 Mathieu Othacehe <m.othacehe@gmail.com> ;;; Copyright © 2021 Pierre Langlois <pierre.langlois@gmx.com> @@ -643,7 +643,12 @@ for `sh' in $PATH, and without nscd, and with static NSS modules." #~("--disable-jit") #~()) #$@(if (target-hurd64?) - #~("lt_cv_prog_compiler_static_works=yes") + #~("lt_cv_prog_compiler_static_works=yes" + (string-append "CFLAGS=-g -O2" + " -Wno-error=implicit-function-declaration" + " -Wno-error=missing-prototypes" + + " -Wno-error=int-conversion")) #~()))) ((#:phases phases '%standard-phases) #~(modify-phases #$phases |
