[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/07: gnu: commencement: Build the final Bash with "bison-boot1".
From: |
Ludovic Courtès |
Subject: |
05/07: gnu: commencement: Build the final Bash with "bison-boot1". |
Date: |
Fri, 18 Dec 2015 23:02:59 +0000 |
civodul pushed a commit to branch core-updates
in repository guix.
commit f1e0c85ad23071ea5b1dbcee1474ec34a5de7422
Author: Ludovic Courtès <address@hidden>
Date: Fri Dec 18 23:57:11 2015 +0100
gnu: commencement: Build the final Bash with "bison-boot1".
This removes a round of Bison + Flex + M4 + Perl rebuild.
* gnu/packages/commencement.scm (bash-final): Add 'native-inputs'
field pointing to BISON-BOOT1.
---
gnu/packages/commencement.scm | 12 +++++++-----
1 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 7c13ecf..32facf2 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -662,11 +662,13 @@ exec ~a/bin/~a-~a -B~a/lib -Wl,-dynamic-linker -Wl,~a/~a
\"address@hidden"~%"
(define bash-final
;; Link with `-static-libgcc' to make sure we don't retain a reference
;; to the bootstrap GCC.
- (package-with-bootstrap-guile
- (package-with-explicit-inputs (static-libgcc-package bash)
- %boot3-inputs
- (current-source-location)
- #:guile %bootstrap-guile)))
+ (package
+ (inherit (package-with-bootstrap-guile
+ (package-with-explicit-inputs (static-libgcc-package bash)
+ %boot3-inputs
+ (current-source-location)
+ #:guile %bootstrap-guile)))
+ (native-inputs `(("bison" ,bison-boot1)))))
(define %boot4-inputs
;; Now use the final Bash.
- branch core-updates updated (c5b65f7 -> 53088d0), Ludovic Courtès, 2015/12/18
- 03/07: gnu: commencement: Add "-boot0" to early packages., Ludovic Courtès, 2015/12/18
- 05/07: gnu: commencement: Build the final Bash with "bison-boot1".,
Ludovic Courtès <=
- 01/07: gnu: commencement: Use GMP 6.0.0a for bootstrapping., Ludovic Courtès, 2015/12/18
- 06/07: build-system/gnu: Always pass "-D" to strip/objcopy., Ludovic Courtès, 2015/12/18
- 02/07: gnu: gcc: Prefer language-specific variables over 'CPATH'., Ludovic Courtès, 2015/12/18
- 04/07: gnu: commencement: Avoid redundant Perl rebuild., Ludovic Courtès, 2015/12/18
- 07/07: gnu: commencement: Build Bison deterministically., Ludovic Courtès, 2015/12/18