[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/26: bootstrap: mescc-tools: Support ARM, update to 0.7.0.
From: |
guix-commits |
Subject: |
05/26: bootstrap: mescc-tools: Support ARM, update to 0.7.0. |
Date: |
Sat, 9 Jan 2021 13:30:46 -0500 (EST) |
janneke pushed a commit to branch wip-arm-bootstrap
in repository guix.
commit b0f2c45bc1af31b7ab3104d673ef867cb4cc9f23
Author: Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Sun Dec 13 22:47:18 2020 +0100
bootstrap: mescc-tools: Support ARM, update to 0.7.0.
* gnu/packages/make-bootstrap.scm (%mescc-tools-static): Inherit from
mescc-tools; updating to 0.7.0.
[arguments]: Support armhf-linux, aarch64-linux. Update make-flags to
really
build static.
---
gnu/packages/make-bootstrap.scm | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm
index b2d3e2a..195ea22 100644
--- a/gnu/packages/make-bootstrap.scm
+++ b/gnu/packages/make-bootstrap.scm
@@ -589,13 +589,16 @@ for `sh' in $PATH, and without nscd, and with static NSS
modules."
(define %mescc-tools-static
;; A statically linked MesCC Tools.
(package
- (inherit mescc-tools-0.5.2)
+ (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 ac6ca06), guix-commits, 2021/01/09
- 02/26: gnu: Add nyacc-1.00.2., guix-commits, 2021/01/09
- 01/26: gnu: mescc-tools: Update to 0.7.0., guix-commits, 2021/01/09
- 03/26: gnu: mes: Update to nyacc-1.00.2., guix-commits, 2021/01/09
- 05/26: bootstrap: mescc-tools: Support ARM, update to 0.7.0.,
guix-commits <=
- 12/26: commencement: tcc-boot0: Support ARM, update to 0.9.26-1136-g0fbeb2dd., guix-commits, 2021/01/09
- 14/26: commencement: make-mesboot0: Support ARM., guix-commits, 2021/01/09
- 16/26: commencement: bash-mesboot0: Support ARM., guix-commits, 2021/01/09
- 19/26: commencement: patch-mesboot: Support ARM., guix-commits, 2021/01/09
- 17/26: commencement: tcc-boot: Support ARM., guix-commits, 2021/01/09
- 20/26: commencement: sed-mesboot0: Support ARM., guix-commits, 2021/01/09
- 04/26: DRAFT gnu: mes: Update to 0.22-123-g9cd754498., guix-commits, 2021/01/09
- 06/26: bootstrap: mes-minimal: Support ARM, update for mes-0.23., guix-commits, 2021/01/09
- 09/26: commencement: gash-boot: Build fix for ARM., guix-commits, 2021/01/09
- 07/26: DRAFT bootstrap: %bootstrap-mescc-tools: Support ARM., guix-commits, 2021/01/09