guix_mirror_bot pushed a commit to branch wip-riscv-bootstrap in repository guix.
commit 9c1ddc8bb8c572a9cca3fb20a0dfc72e4315b192 Author: Efraim Flashner <efr...@flashner.co.il> AuthorDate: Mon Oct 21 14:58:26 2024 +0300 gnu: %bootstrap-inputs+toolchain: Switch riscv64-linux to full bootstrap. * gnu/packages/commencement.scm (%bootstrap-inputs+toolchain): When building on riscv64-linux use %boot-mesboot6-inputs. Change-Id: Ie5dbf4ba321ac9ff421533ec04d2ace9306e8a50 --- 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 350d24cf64..efb3ae9373 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -2670,7 +2670,7 @@ exec " gcc "/bin/" program ;; The traditional bootstrap-inputs. For the i686-linux, x86_64-linux ;; Scheme-only bootstrap the actual reduced set with bootstrapped toolchain. (match (%current-system) - ((or "i686-linux" "x86_64-linux") + ((or "i686-linux" "x86_64-linux" "riscv64-linux") (%boot-mesboot6-inputs)) (_ (%bootstrap-inputs))))