GNU bug report logs -
#47921
[PATCH] build: Fix elf-dynamic-info-soname.
Previous Next
Reported by: Dion Mendel <guix <at> dm9.info>
Date: Tue, 20 Apr 2021 20:57:02 UTC
Severity: normal
Tags: patch
Done: Ludovic Courtès <ludo <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#47921: [PATCH] build: Fix elf-dynamic-info-soname.
which was filed against the guix-patches package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 47921 <at> debbugs.gnu.org.
--
47921: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=47921
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Hi Dion,
Dion Mendel <guix <at> dm9.info> skribis:
>>From bfc69ea726e0f5c1955e629e92af377ffb90c2c5 Mon Sep 17 00:00:00 2001
> From: Dion Mendel <guix <at> dm9.info>
> Date: Thu, 22 Apr 2021 10:32:35 +0800
> Subject: [PATCH] * guix/build/gremlin.scm (elf-dynamic-info): Correctly set
> the value of soname in <elf-dynamic-info>.
>
> ---
> guix/build/gremlin.scm | 4 +++-
> tests/gremlin.scm | 18 ++++++++++++++++++
> 2 files changed, 21 insertions(+), 1 deletion(-)
Awesome. I tweaked the commit message and applied it.
Thank you, and thanks Maxime for the review!
Ludo’.
[Message part 3 (message/rfc822, inline)]
* guix/build/gremlin.scm (elf-dynamic-info-soname): Return the value of
the dynamic-entry instead of the dynamic-entry record itself.
---
guix/build/gremlin.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/guix/build/gremlin.scm b/guix/build/gremlin.scm
index e8ea66dfb3..4a31c3cfaf 100644
--- a/guix/build/gremlin.scm
+++ b/guix/build/gremlin.scm
@@ -215,7 +215,10 @@ string table if the type is a string."
(#f #f)
((? elf-segment? dynamic)
(let ((entries (dynamic-entries elf dynamic)))
- (%elf-dynamic-info (find (matching-entry DT_SONAME) entries)
+ (%elf-dynamic-info (or (and=> (find (matching-entry DT_SONAME)
+ entries)
+ dynamic-entry-value)
+ #f)
(filter-map (lambda (entry)
(and (= (dynamic-entry-type entry)
DT_NEEDED)
--
2.31.0
This bug report was last modified 4 years and 88 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.