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

commit 9c3f731bd0beb6217781e9787bfdf20a81bb2703
Author: Efraim Flashner <[email protected]>
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 363c7afa71..ce9b6f70e1 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