[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
12/22: DRAFT commencement: tcc-boot0: Support ARM, update to 0.9.26-1136
From: |
guix-commits |
Subject: |
12/22: DRAFT commencement: tcc-boot0: Support ARM, update to 0.9.26-1136-g0fbeb2dd. |
Date: |
Wed, 23 Dec 2020 17:49:32 -0500 (EST) |
janneke pushed a commit to branch wip-arm-bootstrap
in repository guix.
commit 1479c8713711cec75f198859b403571e0313fed4
Author: Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Sun Dec 13 14:59:35 2020 +0100
DRAFT commencement: tcc-boot0: Support ARM, update to 0.9.26-1136-g0fbeb2dd.
XXX TODO: ARM setjmp support.
* gnu/packages/commencement.scm (tcc-boot0)[source]: Update to
0.9.26-1136-g0fbeb2dd.
[suported-systems]: Add armhf-linux, aarch64-linux.
[arguments]: Update accordingly.
---
gnu/packages/commencement.scm | 30 +++++++++++++++---------------
1 file changed, 15 insertions(+), 15 deletions(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index dcf59fd..9d69167 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -468,7 +468,7 @@ $MES -e '(mescc)' module/mescc.scm -- \"$@\"
(files '("")))))))
(define tcc-boot0
- ;; Pristine tcc cannot be built by MesCC, we are keeping a delta of 11
+ ;; Pristine tcc cannot be built by MesCC, we are keeping a delta of 30
;; patches. In a very early and rough form they were presented to the
;; TinyCC developers, who at the time showed no interest in supporting the
;; bootstrappable effort; we will try again later. These patches have been
@@ -477,22 +477,23 @@ $MES -e '(mescc)' module/mescc.scm -- \"$@\"
(package
(inherit tcc)
(name "tcc-boot0")
- (version "0.9.26-1103-g6e62e0e")
+ (version "0.9.26-1136-g0fbeb2dd")
(source (origin
(method url-fetch)
(uri (string-append
- "http://lilypond.org/janneke/mes/20191117/"
+ "http://lilypond.org/janneke/tcc/"
"/tcc-" version ".tar.gz"))
(sha256
(base32
- "1qbybw7mxbgkv3sazvz1v7c8byq998vk8f1h25ik8w3d2l63lxng"))))
+ "06yyq84rw8i174as686ql4582lvwd16c0jbaj2wrgln715pi146d"))))
(build-system gnu-build-system)
- (supported-systems '("i686-linux" "x86_64-linux"))
+ (supported-systems '("armhf-linux" "aarch64-linux"
+ "i686-linux" "x86_64-linux"))
(inputs '())
(propagated-inputs '())
(native-inputs
`(("mes" ,mes-boot)
- ("nyacc-source" ,(origin (inherit (package-source nyacc-0.99))
+ ("nyacc-source" ,(origin (inherit (package-source nyacc-1.00.2))
(snippet #f)))
("mescc-tools" ,%bootstrap-mescc-tools)
,@(%boot-gash-inputs)))
@@ -509,18 +510,17 @@ $MES -e '(mescc)' module/mescc.scm -- \"$@\"
(with-directory-excursion ".."
(invoke "tar" "-xvf" nyacc-source)))))
(replace 'configure
- (lambda* (#:key outputs #:allow-other-keys)
+ (lambda* (#:key inputs outputs #:allow-other-keys)
(let* ((out (assoc-ref %outputs "out"))
(dir (with-directory-excursion ".." (getcwd)))
- (interpreter "/lib/mes-loader"))
-
- (setenv "prefix" out)
- (setenv "GUILE_LOAD_PATH"
- (string-append dir "/nyacc-0.99.0/module"))
-
+ (interpreter "/lib/mes-loader")
+ (mes (assoc-ref inputs "mes"))
+ (mescc (string-append mes "/bin/mescc")))
(substitute* "conftest.c"
(("volatile") ""))
-
+ (setenv "prefix" out)
+ (setenv "GUILE_LOAD_PATH"
+ (string-append dir "/nyacc-1.00.2/module"))
(invoke "sh" "configure"
"--cc=mescc"
(string-append "--prefix=" out)
@@ -530,7 +530,7 @@ $MES -e '(mescc)' module/mescc.scm -- \"$@\"
(replace 'build
(lambda _
(substitute* "bootstrap.sh" ; Show some progress
- (("^( *)((cp|ls|mkdir|rm|[.]/tcc|[.]/[$][{PROGRAM_PREFIX[}]tcc)
[^\"]*[^\\])\n" all space cmd)
+ (("^( *)((cp|ls|mkdir|rm|[.]/tcc|[.]/[$][{program_prefix[}]tcc)
[^\"]*[^\\])\n" all space cmd)
(string-append space "echo \"" cmd "\"\n"
space cmd "\n")))
(invoke "sh" "bootstrap.sh")))
- 03/22: gnu: mes: Update to nyacc-1.00.2., (continued)
- 03/22: gnu: mes: Update to nyacc-1.00.2., guix-commits, 2020/12/23
- 17/22: DRAFT commencement: tcc-boot: Support ARM., guix-commits, 2020/12/23
- 19/22: commencement: patch-mesboot: Support ARM., guix-commits, 2020/12/23
- 22/22: DRAFT commencement: gcc-core-mesboot0: Support ARM., guix-commits, 2020/12/23
- 04/22: DRAFT gnu: Add mes-next., guix-commits, 2020/12/23
- 05/22: bootstrap: mescc-tools: Support ARM, update to 0.7.0., guix-commits, 2020/12/23
- 06/22: DRAFT bootstrap: mes-minimal: Support ARM, update to mes-0.22.115., guix-commits, 2020/12/23
- 13/22: commencement: gzip-mesboot: Support ARM., guix-commits, 2020/12/23
- 15/22: commencement: bzip2-mesboot: Support ARM., guix-commits, 2020/12/23
- 09/22: commencement: gash-boot: Build fix for ARM., guix-commits, 2020/12/23
- 12/22: DRAFT commencement: tcc-boot0: Support ARM, update to 0.9.26-1136-g0fbeb2dd.,
guix-commits <=
- 14/22: commencement: make-mesboot0: Support ARM., guix-commits, 2020/12/23
- 11/22: DRAFT commencement: mes-boot: Support ARM., guix-commits, 2020/12/23
- 18/22: commencement: diffutils-mesboot: Support ARM., guix-commits, 2020/12/23
- 20/22: commencement: sed-mesboot0: Support ARM., guix-commits, 2020/12/23
- 21/22: DRAFT commencement: binutils-mesboot0: Support ARM., guix-commits, 2020/12/23