guix_mirror_bot pushed a commit to branch wip-riscv-bootstrap
in repository guix.

commit 5983ecb210eeae8bc7d152ad4c560bdd9492d357
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 efb3ae9373..4e9614856e 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -2696,7 +2696,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)))))

Reply via email to