GNU bug report logs -
#74643
[PATCH] guix: docker: Support riscv64.
Previous Next
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 74643 in the body.
You can then email your comments to 74643 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix <at> cbaines.net, dev <at> jpoiret.xyz, ludo <at> gnu.org, othacehe <at> gnu.org, zimon.toutoune <at> gmail.com, me <at> tobias.gr, guix-patches <at> gnu.org
:
bug#74643
; Package
guix-patches
.
(Mon, 02 Dec 2024 08:13:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Zheng Junjie <zhengjunjie <at> iscas.ac.cn>
:
New bug report received and forwarded. Copy sent to
guix <at> cbaines.net, dev <at> jpoiret.xyz, ludo <at> gnu.org, othacehe <at> gnu.org, zimon.toutoune <at> gmail.com, me <at> tobias.gr, guix-patches <at> gnu.org
.
(Mon, 02 Dec 2024 08:13:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* guix/docker.scm (build-docker-image): Add riscv64 case.
Change-Id: I4b735dfe299818209341e65876fe736046bb30e7
---
guix/docker.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/guix/docker.scm b/guix/docker.scm
index 1c6f59568f6..67176ba0596 100644
--- a/guix/docker.scm
+++ b/guix/docker.scm
@@ -4,6 +4,7 @@
;;; Copyright © 2018 Chris Marusich <cmmarusich <at> gmail.com>
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
;;; Copyright © 2023 Oleg Pykhalov <go.wigust <at> gmail.com>
+;;; Copyright © 2024 Zheng Junjie <873216071 <at> qq.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -312,7 +313,8 @@ (define* (build-docker-image image paths prefix
("i686" "386")
("arm" "arm")
("aarch64" "arm64")
- ("mips64" "mips64le")))))
+ ("mips64" "mips64le")
+ ("riscv64" "riscv64")))))
;; Make sure we start with a fresh, empty working directory.
(mkdir directory)
(with-directory-excursion directory
base-commit: ca3a79ccee5f9a857e00128f11d04e3c1aef901a
--
2.46.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#74643
; Package
guix-patches
.
(Fri, 06 Dec 2024 23:03:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 74643 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Hi,
Does Docker itself support RISC-V or we need just Go compiler supporting
it which is merged few years ago
https://github.com/golang/go/issues/27532.
--
Oleg
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#74643
; Package
guix-patches
.
(Sat, 07 Dec 2024 01:19:01 GMT)
Full text and
rfc822 format available.
Message #11 received at 74643 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Sharlatan Hellseher <sharlatanus <at> gmail.com> writes:
> Hi,
>
> Does Docker itself support RISC-V or we need just Go compiler supporting
docker has supported riscv64 for a long time, and I use it every day at
work, hub.docker.com has some images support riscv64,
e.g. https://hub.docker.com/r/riscv64/debian
And you can see
https://github.com/docker-library/official-images#architectures-other-than-amd64
> it which is merged few years ago
> https://github.com/golang/go/issues/27532.
[signature.asc (application/pgp-signature, inline)]
Reply sent
to
Z572 <zhengjunjie <at> iscas.ac.cn>
:
You have taken responsibility.
(Thu, 16 Jan 2025 05:47:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Zheng Junjie <zhengjunjie <at> iscas.ac.cn>
:
bug acknowledged by developer.
(Thu, 16 Jan 2025 05:47:02 GMT)
Full text and
rfc822 format available.
Message #16 received at 74643-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Zheng Junjie <zhengjunjie <at> iscas.ac.cn> writes:
> * guix/docker.scm (build-docker-image): Add riscv64 case.
>
> Change-Id: I4b735dfe299818209341e65876fe736046bb30e7
> ---
> guix/docker.scm | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/guix/docker.scm b/guix/docker.scm
> index 1c6f59568f6..67176ba0596 100644
> --- a/guix/docker.scm
> +++ b/guix/docker.scm
> @@ -4,6 +4,7 @@
> ;;; Copyright © 2018 Chris Marusich <cmmarusich <at> gmail.com>
> ;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
> ;;; Copyright © 2023 Oleg Pykhalov <go.wigust <at> gmail.com>
> +;;; Copyright © 2024 Zheng Junjie <873216071 <at> qq.com>
> ;;;
> ;;; This file is part of GNU Guix.
> ;;;
> @@ -312,7 +313,8 @@ (define* (build-docker-image image paths prefix
> ("i686" "386")
> ("arm" "arm")
> ("aarch64" "arm64")
> - ("mips64" "mips64le")))))
> + ("mips64" "mips64le")
> + ("riscv64" "riscv64")))))
> ;; Make sure we start with a fresh, empty working directory.
> (mkdir directory)
> (with-directory-excursion directory
>
> base-commit: ca3a79ccee5f9a857e00128f11d04e3c1aef901a
pushed, closing.
[signature.asc (application/pgp-signature, inline)]
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Thu, 13 Feb 2025 12:24:09 GMT)
Full text and
rfc822 format available.
This bug report was last modified 189 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.