This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
Re: Debugging containerized glibc tests with gdb (a developer use case for outside-of-container debugging).
- From: "Gabriel F. T. Gomes" <gabriel at inconstante dot net dot br>
- To: Carlos O'Donell <carlos at redhat dot com>
- Cc: DJ Delorie <dj at redhat dot com>, libc-alpha <libc-alpha at sourceware dot org>, Gdb <gdb at sourceware dot org>, Gary Benson <gbenson at redhat dot com>, Florian Weimer <fweimer at redhat dot com>
- Date: Fri, 27 Dec 2019 14:55:51 -0300
- Subject: Re: Debugging containerized glibc tests with gdb (a developer use case for outside-of-container debugging).
- References: <b0df7715-8506-4b90-d1ab-987309e967bb@redhat.com> <20191226172138.5a6a4151@tereshkova> <a99573a9-8b77-bf33-d035-0bfac5e23797@redhat.com>
Hi, Carlos,
On Fri, 27 Dec 2019, Carlos O'Donell wrote:
>
>Did you try --enable-hardcoded-path-in-tests?
I hadn't. ¬¬
That was it.
You wrote this in your first email:
>In test-container.c we mount $srcdir and $objdir into the same absolute paths
>inside the container, so ld.so should be accessible from the same absolute paths.
>If we fail those mounts we immediately fail the test with FAIL_EXIT1.
I think the paths are the same, but the contents are not identical. On
the tests I did, the testroot.root/path/to/build/dir/elf directory is
missing the symlink between ld.so and ld<whatever>.so.<n>. For instance:
$ ls -l testroot.root/home/gabriel/build/x86_64/glibc/elf
-rwxrwxr-x 1 gabriel gabriel 1342800 Dec 27 11:09 ld-linux-x86-64.so.2
$ ls -l testroot.root/home/gabriel/build/powerpc64le/glibc/elf/
-rwxr-xr-x 1 gabriel gabriel 1566232 Dec 27 09:05 ld64.so.2
Whereas on the actual build dir:
$ ls -l elf/ld*.so*
lrwxrwxrwx 1 gabriel gabriel 5 Dec 27 09:04 elf/ld64.so.2 -> ld.so
-rwxr-xr-x 1 gabriel gabriel 1566232 Dec 27 09:04 elf/ld.so
>warning: Could not load shared library symbols for /home/carlos/build/glibc-gr-localedef/elf/ld.so.
If I create the ld.so symlink in the sysroot, the problem goes away.
Should there be a symlink in the sysroot?