[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
34/54: bootstrap: Add binutils-mesboot1.
From: |
guix-commits |
Subject: |
34/54: bootstrap: Add binutils-mesboot1. |
Date: |
Fri, 22 Nov 2019 18:17:53 -0500 (EST) |
janneke pushed a commit to branch wip-bootstrap
in repository guix.
commit f27d2f1003f49b41f27005651219397b5b04c405
Author: Jan Nieuwenhuizen <address@hidden>
Date: Fri Nov 22 20:37:30 2019 +0100
bootstrap: Add binutils-mesboot1.
* gnu/packages/commencement.scm (binutils-mesboot1): New variable.
---
gnu/packages/commencement.scm | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index d932414..69af7e8 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -1561,6 +1561,44 @@ ac_cv_c_float_format='IEEE (little-endian)'
(symlink "grep" (string-append bin "/fgrep"))
#t))))))))
+(define binutils-mesboot1
+ (package
+ (inherit binutils-mesboot0)
+ (name "binutils-mesboot1")
+ (native-inputs `(("binutils" ,binutils-mesboot0)
+ ("bash" ,bash-mesboot0)
+ ("gcc" ,gcc-mesboot0)
+ ("gzip" ,gzip-mesboot0)
+ ("libc" ,glibc-mesboot0)
+ ("make" ,make-mesboot0)
+ ("patch" ,patch-mesboot0)
+ ("sed" ,sed-mesboot0)
+ ("tar" ,tar-mesboot)
+
+ ("gash" ,%bootstrap-gash)
+ ("guile" ,%bootstrap-guile)
+ ("kernel-headers" ,%bootstrap-linux-libre-headers)))
+ (arguments
+ (substitute-keyword-arguments (package-arguments binutils-mesboot0)
+ ((#:configure-flags configure-flags)
+ '(let ((out (assoc-ref %outputs "out")))
+ `("--disable-nls"
+ "--disable-shared"
+ "--disable-werror"
+ "--build=i686-unknown-linux-gnu"
+ "--host=i686-unknown-linux-gnu"
+ "--with-sysroot=/"
+ ,(string-append "--prefix=" out))))
+ ((#:phases phases)
+ `(modify-phases ,phases
+ (replace 'setenv
+ (lambda _
+ (let* ((out (assoc-ref %outputs "out"))
+ (bash (assoc-ref %build-inputs "bash"))
+ (shell (string-append bash "/bin/bash")))
+ (setenv "CONFIG_SHELL" shell)
+ #t)))))))))
+
(define binutils-mesboot
(package
(inherit binutils-mesboot0)
- 37/54: bootstrap: Add gawk-mesboot., (continued)
- 37/54: bootstrap: Add gawk-mesboot., guix-commits, 2019/11/22
- 20/54: bootstrap: tcc-boot: Scheme-only bootstrap., guix-commits, 2019/11/22
- 41/54: bootstrap: Add gcc-mesboot1: Scheme-only bootstrap., guix-commits, 2019/11/22
- 53/54: bootstrap: Add sed-boot0., guix-commits, 2019/11/22
- 50/54: bootstrap: Add coreutils-mesboot., guix-commits, 2019/11/22
- 54/54: bootstrap: Remove %bootstrap-coreutils&co, %bootstrap-bash., guix-commits, 2019/11/22
- 36/54: bootstrap: Add make-mesboot., guix-commits, 2019/11/22
- 44/54: bootstrap: binutils-mesboot: Scheme-only bootstrap., guix-commits, 2019/11/22
- 25/54: bootstrap: gcc-core-mesboot0: Scheme-only bootstrap., guix-commits, 2019/11/22
- 29/54: bootstrap: mesboot-headers: Scheme-only bootstrap., guix-commits, 2019/11/22
- 34/54: bootstrap: Add binutils-mesboot1.,
guix-commits <=
- 35/54: bootstrap: Add coreutils-mesboot0., guix-commits, 2019/11/22
- 45/54: bootstrap: glibc-headers-mesboot: Scheme-only bootstrap., guix-commits, 2019/11/22
- 39/54: bootstrap: Add gcc-core-mesboot1., guix-commits, 2019/11/22
- 51/54: bootstrap: Remove m4-bootstrap., guix-commits, 2019/11/22
- 52/54: bootstrap: %bootstrap-inputs+toolchain: Scheme-only bootstrap., guix-commits, 2019/11/22