efraim pushed a commit to branch wip-riscv-bootstrap in repository guix. commit 170b50c176639e6b46f486be66eca9764731c9c2 Author: Efraim Flashner <efr...@flashner.co.il> AuthorDate: Mon Oct 21 14:59:25 2024 +0300
gnu: gnu-make-boot0: Adjust configure-flags on riscv64-linux. * gnu/packages/commencement.scm (gnu-make-boot0)[arguments]: When building for riscv64-linux adjust the configure-flags to allow using posix-spawn. Change-Id: If0e983f57c3483acfa154aa569a126de206518c1 --- gnu/packages/commencement.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index 33ea59c42f..a7e06d0225 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -2635,7 +2635,7 @@ exec " gcc "/bin/" program ;; 'posix_spawn'. Thus, disable it. See ;; <https://bugs.gnu.org/49367>. ,(match (%current-system) - ((or "i686-linux" "x86_64-linux") + ((or "i686-linux" "x86_64-linux" "riscv64-linux") flags) (_ `(cons "--disable-posix-spawn" ,flags)))))