mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: make-bootstrap: Use guile-3.0 bootstrap tarball.
* gnu/packages/make-bootstrap.scm (%guile-bootstrap-tarball): Use guile-3.0. (%guile-static-stripped): Remove variable.
This commit is contained in:
parent
f819b46acb
commit
e48cff0965
1 changed files with 3 additions and 7 deletions
|
@ -55,7 +55,6 @@ (define-module (gnu packages make-bootstrap)
|
|||
%mes-bootstrap-tarball
|
||||
%bootstrap-tarballs
|
||||
|
||||
%guile-static-stripped
|
||||
%guile-3.0-static-stripped))
|
||||
|
||||
;;; Commentary:
|
||||
|
@ -799,12 +798,9 @@ (define* (make-guile-static-stripped static-guile)
|
|||
(outputs '("out"))
|
||||
(synopsis "Minimal statically-linked and relocatable Guile")))
|
||||
|
||||
(define %guile-static-stripped
|
||||
;; A stripped static Guile binary, for use during bootstrap.
|
||||
(make-guile-static-stripped %guile-static))
|
||||
|
||||
(define %guile-3.0-static-stripped
|
||||
;; A stripped static Guile 3.0 binary, for use in initrds.
|
||||
;; A stripped static Guile 3.0 binary, for use in initrds
|
||||
;; and during bootstrap.
|
||||
(make-guile-static-stripped
|
||||
(make-guile-static guile-3.0
|
||||
'("guile-2.2-default-utf8.patch"
|
||||
|
@ -867,7 +863,7 @@ (define %gcc-bootstrap-tarball
|
|||
|
||||
(define %guile-bootstrap-tarball
|
||||
;; A tarball with the statically-linked, relocatable Guile.
|
||||
(tarball-package %guile-static-stripped))
|
||||
(tarball-package %guile-3.0-static-stripped))
|
||||
|
||||
(define %mescc-tools-bootstrap-tarball
|
||||
;; A tarball with statically-linked MesCC binary seed.
|
||||
|
|
Loading…
Reference in a new issue