[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/26: DRAFT bootstrap: %bootstrap-mescc-tools: Support ARM.
From: |
guix-commits |
Subject: |
07/26: DRAFT bootstrap: %bootstrap-mescc-tools: Support ARM. |
Date: |
Mon, 28 Dec 2020 13:58:08 -0500 (EST) |
janneke pushed a commit to branch wip-arm-bootstrap
in repository guix.
commit 7979961469db51ee9c394d646431246aa0fc1f53
Author: Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Tue Dec 15 11:30:26 2020 +0100
DRAFT bootstrap: %bootstrap-mescc-tools: Support ARM.
Built with
7f847ea20b90c2fb8dc3b5eb51e6c007a8c5461a
DRAFT bootstrap: mes-minimal: Support ARM, update to mes-0.22.115.
* gnu/packages/bootstrap.scm (%bootstrap-mescc-tools)[inputs]: Add
tarball for armhf-linux.
[supported-systems]: Add armhf-linux, aarch64-linux.
---
gnu/packages/bootstrap.scm | 18 +++++++++++++-----
1 file changed, 13 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/bootstrap.scm b/gnu/packages/bootstrap.scm
index c39e60e..656c8a1 100644
--- a/gnu/packages/bootstrap.scm
+++ b/gnu/packages/bootstrap.scm
@@ -786,17 +786,25 @@ exec ~a/bin/.gcc-wrapped -B~a/lib \
(origin
(method url-fetch)
(uri (map
- (cute string-append <>
- "/i686-linux/20190815/"
- "mescc-tools-static-stripped-0.5.2-i686-linux.tar.xz")
+ (cut string-append <> (%current-system) "/"
+ (match (%current-system)
+ ((or "armhf-linux" "aarch64-linux")
+
"20201219/mescc-tools-static-stripped-0.7.0-armhf-linux.tar.xz")
+ ((or "i686-linux" "x86_64-linux")
+
"20190815/mescc-tools-static-stripped-0.5.2-i686-linux.tar.xz")))
%bootstrap-base-urls))
(sha256
(base32
- "0c3kklgghzh4q2dbpl6asb74cimp7hp6jscdwqwmzxbapgcl6582")))))))
+ (match (%current-system)
+ ((or "armhf-linux" "aarch64-linux")
+ "0yzg93r0x18f7v264pxh7gjcav68aiw1irz1mqmfh5hphbhfk5nv")
+ ((or "i686-linux" "x86_64-linux")
+
"0c3kklgghzh4q2dbpl6asb74cimp7hp6jscdwqwmzxbapgcl6582")))))))))
(synopsis "Bootstrap binaries of MesCC Tools")
(description synopsis)
(home-page #f)
- (supported-systems '("i686-linux" "x86_64-linux"))
+ (supported-systems '("armhf-linux" "aarch64-linux"
+ "i686-linux" "x86_64-linux"))
(license gpl3+)))
(define %bootstrap-mes
- 01/26: gnu: mescc-tools: Update to 0.7.0., (continued)
- 01/26: gnu: mescc-tools: Update to 0.7.0., guix-commits, 2020/12/28
- 05/26: bootstrap: mescc-tools: Support ARM, update to 0.7.0., guix-commits, 2020/12/28
- 02/26: gnu: Add nyacc-1.00.2., guix-commits, 2020/12/28
- 03/26: gnu: mes: Update to nyacc-1.00.2., guix-commits, 2020/12/28
- 04/26: DRAFT gnu: Add mes-next., guix-commits, 2020/12/28
- 08/26: DRAFT bootstrap: %bootstrap-mes: Support ARM., guix-commits, 2020/12/28
- 09/26: commencement: gash-boot: Build fix for ARM., guix-commits, 2020/12/28
- 10/26: DRAFT commencement: bootstrap-mes-rewired: Support ARM., guix-commits, 2020/12/28
- 11/26: DRAFT commencement: mes-boot: Support ARM., guix-commits, 2020/12/28
- 12/26: commencement: tcc-boot0: Support ARM, update to 0.9.26-1136-g0fbeb2dd., guix-commits, 2020/12/28
- 07/26: DRAFT bootstrap: %bootstrap-mescc-tools: Support ARM.,
guix-commits <=
- 06/26: DRAFT bootstrap: mes-minimal: Support ARM, update to mes-0.22-118., guix-commits, 2020/12/28
- 13/26: commencement: gzip-mesboot: Support ARM., guix-commits, 2020/12/28
- 14/26: commencement: make-mesboot0: Support ARM., guix-commits, 2020/12/28
- 16/26: commencement: bash-mesboot0: Support ARM., guix-commits, 2020/12/28
- 18/26: commencement: diffutils-mesboot: Support ARM., guix-commits, 2020/12/28
- 22/26: commencement: gcc-core-mesboot0: Support ARM., guix-commits, 2020/12/28
- 23/26: commencement: mesboot-headers: Support ARM., guix-commits, 2020/12/28
- 19/26: commencement: patch-mesboot: Support ARM., guix-commits, 2020/12/28
- 15/26: commencement: bzip2-mesboot: Support ARM., guix-commits, 2020/12/28
- 17/26: commencement: tcc-boot: Support ARM., guix-commits, 2020/12/28