* bug#34427: [PATCH] build guile-static with guile-2.0
[not found] <20190211091136.GA3284@macbook41>
@ 2019-02-12 9:17 ` Efraim Flashner
[not found] ` <87mumvhg5u.fsf@gnu.org>
0 siblings, 1 reply; 3+ messages in thread
From: Efraim Flashner @ 2019-02-12 9:17 UTC (permalink / raw)
To: guix-patches; +Cc: 34427
[-- Attachment #1.1: Type: text/plain, Size: 365 bytes --]
When experimenting I found that using guile@2.0 as a base for
guile-static, the resulting guile-static didn't segfault on the target
architecture.
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #1.2: 0001-gnu-guile-static-Build-for-guile-2.0.patch --]
[-- Type: text/plain, Size: 5192 bytes --]
From 18035c4ec2c698f01e6324bc013a536fc036cc0a Mon Sep 17 00:00:00 2001
From: Efraim Flashner <efraim@flashner.co.il>
Date: Mon, 11 Feb 2019 15:10:29 +0200
Subject: [PATCH 1/2] gnu: %guile-static: Build for guile@2.0.
%guile-static@2.2 currently segfaults when run.
* gnu/packages/make-bootstrap.scm (%guile-static): Rewrite package to
use guile@2.0 as a base.
---
gnu/packages/make-bootstrap.scm | 34 ++++++++++++++++-----------------
1 file changed, 17 insertions(+), 17 deletions(-)
diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm
index c6002eb63a..836f24debf 100644
--- a/gnu/packages/make-bootstrap.scm
+++ b/gnu/packages/make-bootstrap.scm
@@ -1,6 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org>
-;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2017, 2019 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2018 Mark H Weaver <mhw@netris.org>
;;;
@@ -518,29 +518,29 @@ for `sh' in $PATH, and without nscd, and with static NSS modules."
;; .scm and .go files relative to its installation directory, rather
;; than in hard-coded configure-time paths.
(let* ((patches (cons* (search-patch "guile-relocatable.patch")
- (search-patch "guile-2.2-default-utf8.patch")
+ (search-patch "guile-default-utf8.patch")
(search-patch "guile-linux-syscalls.patch")
- (origin-patches (package-source guile-2.2))))
- (source (origin (inherit (package-source guile-2.2))
+ (origin-patches (package-source guile-2.0))))
+ (source (origin (inherit (package-source guile-2.0))
(patches patches)))
- (guile (package (inherit guile-2.2)
- (name (string-append (package-name guile-2.2) "-static"))
+ (guile (package (inherit guile-2.0)
+ (name (string-append (package-name guile-2.0) "-static"))
(source source)
(synopsis "Statically-linked and relocatable Guile")
;; Remove the 'debug' output (see above for the reason.)
- (outputs (delete "debug" (package-outputs guile-2.2)))
+ (outputs (delete "debug" (package-outputs guile-2.0)))
(inputs
`(("libunistring:static" ,libunistring "static")
- ,@(package-inputs guile-2.2)))
+ ,@(package-inputs guile-2.0)))
(propagated-inputs
`(("bdw-gc" ,libgc)
,@(alist-delete "bdw-gc"
- (package-propagated-inputs guile-2.2))))
+ (package-propagated-inputs guile-2.0))))
(arguments
- (substitute-keyword-arguments (package-arguments guile-2.2)
+ (substitute-keyword-arguments (package-arguments guile-2.0)
((#:configure-flags flags '())
;; When `configure' checks for ltdl availability, it
;; doesn't try to link using libtool, and thus fails
@@ -563,7 +563,7 @@ for `sh' in $PATH, and without nscd, and with static NSS modules."
(("^guile_LDFLAGS =")
"guile_LDFLAGS = -all-static")
- ;; Add `-ldl' *after* libguile-2.2.la.
+ ;; Add `-ldl' *after* libguile-2.0.la.
(("^guile_LDADD =(.*)$" _ ldadd)
(string-append "guile_LDADD = "
(string-trim-right ldadd)
@@ -591,13 +591,13 @@ for `sh' in $PATH, and without nscd, and with static NSS modules."
(out (assoc-ref %outputs "out"))
(guile1 (string-append in "/bin/guile"))
(guile2 (string-append out "/bin/guile")))
- (mkdir-p (string-append out "/share/guile/2.2"))
- (copy-recursively (string-append in "/share/guile/2.2")
- (string-append out "/share/guile/2.2"))
+ (mkdir-p (string-append out "/share/guile/2.0"))
+ (copy-recursively (string-append in "/share/guile/2.0")
+ (string-append out "/share/guile/2.0"))
- (mkdir-p (string-append out "/lib/guile/2.2/ccache"))
- (copy-recursively (string-append in "/lib/guile/2.2/ccache")
- (string-append out "/lib/guile/2.2/ccache"))
+ (mkdir-p (string-append out "/lib/guile/2.0/ccache"))
+ (copy-recursively (string-append in "/lib/guile/2.0/ccache")
+ (string-append out "/lib/guile/2.0/ccache"))
(mkdir (string-append out "/bin"))
(copy-file guile1 guile2)
--
2.20.1
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [bug#34453] [PATCH] build guile-static with guile-2.0
[not found] ` <86o816394u.fsf_-_@gmail.com>
@ 2022-04-13 21:07 ` Efraim Flashner
2022-06-23 8:14 ` bug#34453: " zimoun
0 siblings, 1 reply; 3+ messages in thread
From: Efraim Flashner @ 2022-04-13 21:07 UTC (permalink / raw)
To: zimoun; +Cc: 34453, 34427, Ludovic Courtès
[-- Attachment #1: Type: text/plain, Size: 974 bytes --]
On Tue, Apr 12, 2022 at 12:10:09PM +0200, zimoun wrote:
> Hi,
>
> What is the status of this old patch #34453?
>
> http://issues.guix.gnu.org/issue/34453
>
>
> On Sat, 16 Feb 2019 at 17:06, Ludovic Courtès <ludo@gnu.org> wrote:
> > Efraim Flashner <efraim@flashner.co.il> skribis:
> >
> >> When experimenting I found that using guile@2.0 as a base for
> >> guile-static, the resulting guile-static didn't segfault on the target
> >> architecture.
> >
> > As discussed in <https://issues.guix.info/issue/34427>, I would rather
> > fix the segfault in 2.2 than move back to 2.0 and effectively delay the
> > problem.
>
> Note that #34427 is still open.
We can probably drop it. We'll pick it back up again if/when it comes up
again.
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* bug#34453: [PATCH] build guile-static with guile-2.0
2022-04-13 21:07 ` [bug#34453] " Efraim Flashner
@ 2022-06-23 8:14 ` zimoun
0 siblings, 0 replies; 3+ messages in thread
From: zimoun @ 2022-06-23 8:14 UTC (permalink / raw)
To: Efraim Flashner; +Cc: 34453-done, Ludovic Courtès
Hi,
On Thu, 14 Apr 2022 at 00:07, Efraim Flashner <efraim@flashner.co.il> wrote:
> On Tue, Apr 12, 2022 at 12:10:09PM +0200, zimoun wrote:
>> On Sat, 16 Feb 2019 at 17:06, Ludovic Courtès <ludo@gnu.org> wrote:
>> > Efraim Flashner <efraim@flashner.co.il> skribis:
>> > As discussed in <https://issues.guix.info/issue/34427>, I would rather
>> > fix the segfault in 2.2 than move back to 2.0 and effectively delay the
>> > problem.
>>
>> Note that #34427 is still open.
>
> We can probably drop it. We'll pick it back up again if/when it comes up
> again.
Therefore, I am closing.
Cheers,
simon
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-06-23 8:24 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20190211091136.GA3284@macbook41>
2019-02-12 9:17 ` bug#34427: [PATCH] build guile-static with guile-2.0 Efraim Flashner
[not found] ` <87mumvhg5u.fsf@gnu.org>
[not found] ` <86o816394u.fsf_-_@gmail.com>
2022-04-13 21:07 ` [bug#34453] " Efraim Flashner
2022-06-23 8:14 ` bug#34453: " zimoun
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).