all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#64794: Guile 3.0.9 in guix shell container with emulated FHS throws ldconfig error @ a050897
@ 2023-07-23  0:58 Juliana Sims
  2023-09-20  6:55 ` Simon Tournier
  2024-06-20 13:00 ` Rostislav Svoboda
  0 siblings, 2 replies; 4+ messages in thread
From: Juliana Sims @ 2023-07-23  0:58 UTC (permalink / raw)
  To: 64794

[-- Attachment #1: Type: text/plain, Size: 667 bytes --]

Hi,

When entering `guix shell -CF guile[@3]`,  I receive the following 
error:
"ldconfig: /lib/libguile-3.0.so.1.6.0-gdb.scm is not an ELF file - it 
has the wrong magic bytes at the start."

Here is the information for my version of Guix:
```
(channel
        (name 'guix)
        (url "<https://git.savannah.gnu.org/git/guix.git>")
        (branch "master")
        (commit
          "a0508975dd6c70a2d2997a75c302a9fd42f7c370")
        (introduction
          (make-channel-introduction
            "9edb3f66fd807b096b48283debdcddccfea34bad"
            (openpgp-fingerprint
              "BBB0 2DDF 2CEA F6A8 0D1D  E643 A2A0 6DF2 A33A 54FA")))
```

Thanks,
Juli


[-- Attachment #2: Type: text/html, Size: 1233 bytes --]

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

* bug#64794: Guile 3.0.9 in guix shell container with emulated FHS throws ldconfig error @ a050897
  2023-07-23  0:58 bug#64794: Guile 3.0.9 in guix shell container with emulated FHS throws ldconfig error @ a050897 Juliana Sims
@ 2023-09-20  6:55 ` Simon Tournier
  2024-06-20 13:00 ` Rostislav Svoboda
  1 sibling, 0 replies; 4+ messages in thread
From: Simon Tournier @ 2023-09-20  6:55 UTC (permalink / raw)
  To: Juliana Sims, 64794

Hi,

On Sat, 22 Jul 2023 at 20:58, Juliana Sims <juli@incana.org> wrote:

> When entering `guix shell -CF guile[@3]`,  I receive the following 
> error:
> "ldconfig: /lib/libguile-3.0.so.1.6.0-gdb.scm is not an ELF file - it 
> has the wrong magic bytes at the start."

[...]

>         (commit
>           "a0508975dd6c70a2d2997a75c302a9fd42f7c370")

I confirm the message:

--8<---------------cut here---------------start------------->8---
$ guix shell -CF guile@3
ldconfig: /lib/libguile-3.0.so.1.6.0-gdb.scm is not an ELF file - it has the wrong magic bytes at the start.
--8<---------------cut here---------------end--------------->8---

with Guix revision 6113e0529d61df7425f64e30a6bf77f7cfdfe5a5.

Is it a warning or an error?  Other said, which feature does it break?


Cheers,
simon




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

* bug#64794: Guile 3.0.9 in guix shell container with emulated FHS throws ldconfig error @ a050897
  2023-07-23  0:58 bug#64794: Guile 3.0.9 in guix shell container with emulated FHS throws ldconfig error @ a050897 Juliana Sims
  2023-09-20  6:55 ` Simon Tournier
@ 2024-06-20 13:00 ` Rostislav Svoboda
  2024-06-20 16:17   ` Thiago Jung Bauermann via Bug reports for GNU Guix
  1 sibling, 1 reply; 4+ messages in thread
From: Rostislav Svoboda @ 2024-06-20 13:00 UTC (permalink / raw)
  To: 64794

The warning appears also for guile@2.0 and later. guile@1.8 works fine:

```
$ guix shell --emulate-fhs --container guile@1.8
[env]$ exit
$ guix shell --emulate-fhs --container guile@2.0
ldconfig: /lib/libguile-2.0.so.22.8.1-gdb.scm is not an ELF file - it
has the wrong magic bytes at the start.

[env]$
```




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

* bug#64794: Guile 3.0.9 in guix shell container with emulated FHS throws ldconfig error @ a050897
  2024-06-20 13:00 ` Rostislav Svoboda
@ 2024-06-20 16:17   ` Thiago Jung Bauermann via Bug reports for GNU Guix
  0 siblings, 0 replies; 4+ messages in thread
From: Thiago Jung Bauermann via Bug reports for GNU Guix @ 2024-06-20 16:17 UTC (permalink / raw)
  To: Rostislav Svoboda; +Cc: 64794

Hello,

Rostislav Svoboda <rostislav.svoboda@gmail.com> writes:

> The warning appears also for guile@2.0 and later. guile@1.8 works fine:
>
> ```
> $ guix shell --emulate-fhs --container guile@1.8
> [env]$ exit
> $ guix shell --emulate-fhs --container guile@2.0
> ldconfig: /lib/libguile-2.0.so.22.8.1-gdb.scm is not an ELF file - it
> has the wrong magic bytes at the start.
>
> [env]$
> ```

The error is harmless. AFAIU ldconfig ignores the non-ELF file and
compiles the ld cache with the ELF shared libraries.

libguile-…-gdb.scm is a GDB extension file¹ that GDB auto-loads when
debugging programs using libguile.so². From the beginning of said .scm
file:

;;; Commentary:
;;;
;;; This file defines GDB extensions to pretty-print 'SCM' objects, and
;;; to walk Guile's virtual machine stack.
;;;
;;; This file is installed under a name that follows the convention that
;;; allows GDB to auto-load it anytime the user is debugging libguile
;;; (info "(gdb) objfile-gdbdotext file").

In distros using the Filesystem Hierarchy Standard, this file is
installed in GDB's data directory instead of /lib, so ldconfig doesn't
run into it. For example, in Debian/Ubuntu:

$ dpkg -L guile-3.0-dev | grep gdb.scm
/usr/share/gdb/auto-load/libguile-3.0.so.1.6.0-gdb.scm

Unfortunately, in the case of Guix the auto-load directory is in GDB's
own immutable installation directory so Guile can't put it there:

$ gdb -q
(gdb) show auto-load scripts-directory 
List of directories from which to load auto-loaded scripts is $debugdir:$datadir/auto-load.
(gdb) show data-directory 
GDB's data directory is "/gnu/store/i6x19fvlb1ladc3hcg70hnkcq6i6x232-gdb-14.2/share/gdb".

One way to improve that would be to propose a patch to upstream GDB so
that additional auto-load scripts directories could be specified via an
environment variable. Then Guile and other packages that provided GDB
extentions (such as libstdc++) could install them in their respective
/gnu/store/…-package/share/gdb/auto-load directories, and the Guix
profile could set the GDB environment variable to point to them.

-- 
Thiago

¹ https://sourceware.org/gdb/current/onlinedocs/gdb.html/Guile.html
² https://sourceware.org/gdb/current/onlinedocs/gdb.html/objfile_002dgdbdotext-file.html




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

end of thread, other threads:[~2024-06-20 16:19 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-23  0:58 bug#64794: Guile 3.0.9 in guix shell container with emulated FHS throws ldconfig error @ a050897 Juliana Sims
2023-09-20  6:55 ` Simon Tournier
2024-06-20 13:00 ` Rostislav Svoboda
2024-06-20 16:17   ` Thiago Jung Bauermann via Bug reports for GNU Guix

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.