From 283ce3bdb312cd9f45becaa062dff99574d4f6e1 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 21 Oct 2024 14:58:26 +0300 Subject: [PATCH] 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 511516ad80..363c7afa71 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))))