[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/21: gnu: bootstrap: mescc-tools: Support ARM.
From: |
guix-commits |
Subject: |
02/21: gnu: bootstrap: mescc-tools: Support ARM. |
Date: |
Wed, 19 Oct 2022 01:40:08 -0400 (EDT) |
janneke pushed a commit to branch wip-arm-bootstrap
in repository guix.
commit a7e7f2909019e5b00734e5316261df097a9549aa
Author: Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Mon Dec 13 22:47:18 2021 +0100
gnu: bootstrap: mescc-tools: Support ARM.
* gnu/packages/make-bootstrap.scm[arguments]: Support armhf-linux,
aarch64-linux. Update make-flags to really build static.
---
gnu/packages/make-bootstrap.scm | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm
index 4ea97368a9..152b070c67 100644
--- a/gnu/packages/make-bootstrap.scm
+++ b/gnu/packages/make-bootstrap.scm
@@ -598,10 +598,13 @@ for `sh' in $PATH, and without nscd, and with static NSS
modules."
(inherit mescc-tools)
(name "mescc-tools-static")
(arguments
- `(#:system "i686-linux"
+ `(#:system ,(match (%current-system)
+ ((or "i686-linux" "x86_64-linux") "i686-linux")
+ ((or "armhf-linux" "aarch64-linux") "armhf-linux"))
,@(substitute-keyword-arguments (package-arguments mescc-tools)
((#:make-flags flags)
- `(cons "CC=gcc -static" ,flags)))))))
+ '(list (string-append "PREFIX=" (assoc-ref %outputs "out"))
+ "CC=gcc -static")))))))
;; ... next remove store references.
(define %mescc-tools-static-stripped
- branch wip-arm-bootstrap created (now 83842db321), guix-commits, 2022/10/19
- 08/21: gnu: commencement: bootstrap-mes-rewired: Support ARM., guix-commits, 2022/10/19
- 16/21: gnu: commencement: binutils-mesboot0: Support ARM., guix-commits, 2022/10/19
- 03/21: gnu: bootstrap: mes-minimal: Support ARM, update for mes-0.23.1., guix-commits, 2022/10/19
- 09/21: gnu: commencement: mes-boot: Support ARM, update to 0.23.1., guix-commits, 2022/10/19
- 12/21: gnu: commencement: gzip-mesboot: Support ARM., guix-commits, 2022/10/19
- 20/21: DRAFT gnu: commencement: glibc-mesboot0: Support ARM., guix-commits, 2022/10/19
- 13/21: gnu: commencement: make-mesboot0: Support ARM., guix-commits, 2022/10/19
- 15/21: gnu: commencement: patch-mesboot: Support ARM., guix-commits, 2022/10/19
- 18/21: gnu: bootstrap: linux-libre-headers-bootstrap: Support ARM., guix-commits, 2022/10/19
- 02/21: gnu: bootstrap: mescc-tools: Support ARM.,
guix-commits <=
- 01/21: gnu: mes: Update to 0.23.1., guix-commits, 2022/10/19
- 04/21: DRAFT gnu: bootstrap: %bootstrap-mescc-tools: Support ARM., guix-commits, 2022/10/19
- 06/21: DRAFT gnu: bootstrap: %bootstrap-mes: Support ARM., guix-commits, 2022/10/19
- 14/21: gnu: commencement: tcc-boot: Support ARM., guix-commits, 2022/10/19
- 19/21: gnu: commencement: mesboot-headers: Support ARM., guix-commits, 2022/10/19
- 05/21: gnu: bootstrap: %bootstrap-mescc-tools: Update ARM to 1.4.0., guix-commits, 2022/10/19
- 21/21: DRAFT gnu: commencement: gcc-mesboot0: Support ARM., guix-commits, 2022/10/19
- 07/21: gnu: commencement: gash-boot: Build fix for ARM., guix-commits, 2022/10/19
- 11/21: gnu: commencement: tcc-boot0: Update to tcc-0.9.26-1136-g1b4f281f., guix-commits, 2022/10/19
- 17/21: gnu: commencement: gcc-core-mesboot0: Support ARM., guix-commits, 2022/10/19