unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#60071] [PATCH 1/2] gnu: %guile-static-stripped: Update to Guile 3.0.8.
@ 2022-12-14 20:12 Maxim Cournoyer
  2022-12-14 20:12 ` [bug#60072] [PATCH 2/2] gnu: %guile-static-3.0: New variable Maxim Cournoyer
  2023-01-03 21:20 ` bug#60071: bug#60072: " Maxim Cournoyer
  0 siblings, 2 replies; 3+ messages in thread
From: Maxim Cournoyer @ 2022-12-14 20:12 UTC (permalink / raw)
  To: 60071; +Cc: Maxim Cournoyer

* gnu/packages/make-bootstrap.scm (%guile-static-stripped): Use
guile-3.0-latest, currently at 3.0.8.  This resolves a segfault in the Guix
System Linux initrd when running Guile 3.0.7 on a Cortex A9 CPU (NXP i.MX6
Quad).
---
 gnu/packages/make-bootstrap.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm
index 4ea97368a9..24855f6b28 100644
--- a/gnu/packages/make-bootstrap.scm
+++ b/gnu/packages/make-bootstrap.scm
@@ -797,7 +797,7 @@ (define %guile-static-stripped
   ;; A stripped static Guile 3.0 binary, for use in initrds
   ;; and during bootstrap.
   (make-guile-static-stripped
-   (make-guile-static guile-3.0
+   (make-guile-static guile-3.0-latest
                       '("guile-2.2-default-utf8.patch"
                         "guile-3.0-linux-syscalls.patch"
                         "guile-3.0-relocatable.patch"))))

base-commit: c6f81ff7a6a527b5a14189a2c359b981ddba43bc
prerequisite-patch-id: 77c51f63cfaba6cafe4e7125f50077d6dc5ca24a
prerequisite-patch-id: 776778c03bce9b7ad3ab94a120f42b764c00fcae
prerequisite-patch-id: 4910d08bdc27384d76030b6ac491ad2c2ed0957f
prerequisite-patch-id: 2de8762a6381a93682d0fe4c893962b9803362b0
prerequisite-patch-id: b9b6f21a2db3f7a5ef82bb11ed23f69749cc6b3d
prerequisite-patch-id: fd4074fb4cf068ccac3122c19138f098a610542a
prerequisite-patch-id: 2b8e69760af1f7bfb66c1edb44471653b6b229d1
prerequisite-patch-id: 51cecbabc04c69d4338addaece536c42a075660f
prerequisite-patch-id: 2c67bfd85b343a65440e6c63451e5417129dea6f
prerequisite-patch-id: 7c7e8e7affe4a115423836e82a0930db2b25ae59
prerequisite-patch-id: 53f792328e96bc30e638d953317e730535d89d42
prerequisite-patch-id: b24087b240dad97b6417e37176915c24a543e887
prerequisite-patch-id: 14cc545148a424b8620ccbcd0cddd95397c964ff
prerequisite-patch-id: 4cc71f61e136fd7288e767ce02bef3b711ea1ad2
prerequisite-patch-id: aaeb5abd0a644684c3998be4fec4f6c978825618
-- 
2.38.1





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#60072] [PATCH 2/2] gnu: %guile-static-3.0: New variable.
  2022-12-14 20:12 [bug#60071] [PATCH 1/2] gnu: %guile-static-stripped: Update to Guile 3.0.8 Maxim Cournoyer
@ 2022-12-14 20:12 ` Maxim Cournoyer
  2023-01-03 21:20 ` bug#60071: bug#60072: " Maxim Cournoyer
  1 sibling, 0 replies; 3+ messages in thread
From: Maxim Cournoyer @ 2022-12-14 20:12 UTC (permalink / raw)
  To: 60072; +Cc: Maxim Cournoyer

* gnu/packages/make-bootstrap.scm (%guile-static-3.0): New variable.
(%guile-static-stripped): Use it.
---
 gnu/packages/make-bootstrap.scm | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm
index 24855f6b28..a0999cb477 100644
--- a/gnu/packages/make-bootstrap.scm
+++ b/gnu/packages/make-bootstrap.scm
@@ -748,6 +748,12 @@ (define %guile-static
                                  "guile-default-utf8.patch"
                                  "guile-linux-syscalls.patch")))
 
+(define %guile-static-3.0
+  (make-guile-static guile-3.0-latest
+                     '("guile-2.2-default-utf8.patch"
+                       "guile-3.0-linux-syscalls.patch"
+                       "guile-3.0-relocatable.patch")))
+
 (define* (make-guile-static-stripped static-guile)
   (package
     (inherit static-guile)
@@ -796,11 +802,7 @@ (define* (make-guile-static-stripped static-guile)
 (define %guile-static-stripped
   ;; A stripped static Guile 3.0 binary, for use in initrds
   ;; and during bootstrap.
-  (make-guile-static-stripped
-   (make-guile-static guile-3.0-latest
-                      '("guile-2.2-default-utf8.patch"
-                        "guile-3.0-linux-syscalls.patch"
-                        "guile-3.0-relocatable.patch"))))
+  (make-guile-static-stripped %guile-static-3.0))
 
 (define (tarball-package pkg)
   "Return a package containing a tarball of PKG."
-- 
2.38.1





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#60071: bug#60072: [PATCH 2/2] gnu: %guile-static-3.0: New variable.
  2022-12-14 20:12 [bug#60071] [PATCH 1/2] gnu: %guile-static-stripped: Update to Guile 3.0.8 Maxim Cournoyer
  2022-12-14 20:12 ` [bug#60072] [PATCH 2/2] gnu: %guile-static-3.0: New variable Maxim Cournoyer
@ 2023-01-03 21:20 ` Maxim Cournoyer
  1 sibling, 0 replies; 3+ messages in thread
From: Maxim Cournoyer @ 2023-01-03 21:20 UTC (permalink / raw)
  To: 60071-done; +Cc: 60072-done

Hello,

Maxim Cournoyer <maxim.cournoyer@gmail.com> writes:

> * gnu/packages/make-bootstrap.scm (%guile-static-stripped): Use
> guile-3.0-latest, currently at 3.0.8.  This resolves a segfault in the Guix
> System Linux initrd when running Guile 3.0.7 on a Cortex A9 CPU (NXP i.MX6
> Quad).

Applied, closing.

-- 
Thanks,
Maxim




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-01-03 21:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-14 20:12 [bug#60071] [PATCH 1/2] gnu: %guile-static-stripped: Update to Guile 3.0.8 Maxim Cournoyer
2022-12-14 20:12 ` [bug#60072] [PATCH 2/2] gnu: %guile-static-3.0: New variable Maxim Cournoyer
2023-01-03 21:20 ` bug#60071: bug#60072: " Maxim Cournoyer

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).