You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just ran into an issue when trying to pack some Appimages inside this image. linuxdeployqt uses ldd to inspect the ELFs and get the list of linked libraries, e.g.
The only workaround I've found is to copy ldd and an old copy of v5 qemu-aarch64-static to a folder I control, and make the former explicitly execute the copied qemu-aarch64-static when calling the dynamic loader.
As this bug renders a critical glibc tool inoperative in CI, reverting the upgrade would be the best alternative.
Please note that this bug only affects aarch64-- the same workflow works correctly from armhf.
The text was updated successfully, but these errors were encountered:
Hi,
I just ran into an issue when trying to pack some Appimages inside this image. linuxdeployqt uses
ldd
to inspect the ELFs and get the list of linked libraries, e.g.ldd /bin/bash
This should return:
but instead, in Trusty and Xenial images updated in the past fortnight I get:
I boiled it down to the line in ldd which attempts to verify the type of object it's dealing with:
The only workaround I've found is to copy
ldd
and an old copy of v5qemu-aarch64-static
to a folder I control, and make the former explicitly execute the copiedqemu-aarch64-static
when calling the dynamic loader.As this bug renders a critical glibc tool inoperative in CI, reverting the upgrade would be the best alternative.
Please note that this bug only affects aarch64-- the same workflow works correctly from armhf.
The text was updated successfully, but these errors were encountered: