summaryrefslogtreecommitdiff
path: root/gnu/packages/bootstrap.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/bootstrap.scm')
-rw-r--r--gnu/packages/bootstrap.scm14
1 files changed, 13 insertions, 1 deletions
diff --git a/gnu/packages/bootstrap.scm b/gnu/packages/bootstrap.scm
index 255141ae87a..c78aaa33d05 100644
--- a/gnu/packages/bootstrap.scm
+++ b/gnu/packages/bootstrap.scm
@@ -53,7 +53,9 @@
53 %bootstrap-glibc 53 %bootstrap-glibc
54 %bootstrap-inputs 54 %bootstrap-inputs
55 %bootstrap-mescc-tools 55 %bootstrap-mescc-tools
56 %bootstrap-mes)) 56 %bootstrap-mes
57
58 %bootstrap-inputs-for-tests))
57 59
58;;; Commentary: 60;;; Commentary:
59;;; 61;;;
@@ -809,4 +811,14 @@ exec ~a/bin/.gcc-wrapped -B~a/lib \
809 ;; In gnu-build-system.scm, we rely on the availability of Bash. 811 ;; In gnu-build-system.scm, we rely on the availability of Bash.
810 ("bash" ,%bootstrap-coreutils&co))) 812 ("bash" ,%bootstrap-coreutils&co)))
811 813
814(define %bootstrap-inputs-for-tests
815 ;; These are bootstrap inputs that are cheap to produce (no compilation
816 ;; needed) and that are meant to be used for testing. (These are those we
817 ;; used before the Mes-based reduced bootstrap.)
818 `(("libc" ,%bootstrap-glibc)
819 ("gcc" ,%bootstrap-gcc)
820 ("binutils" ,%bootstrap-binutils)
821 ("coreutils&co" ,%bootstrap-coreutils&co)
822 ("bash" ,%bootstrap-coreutils&co)))
823
812;;; bootstrap.scm ends here 824;;; bootstrap.scm ends here