Hi,
I think I'm seeing the same thing. Reproduction from a fresh install of
bookworm on an x86_64 host:
# dpkg --add-architecture arm64
# apt update
# apt install hello:arm64
# apt install qemu-user-static binfmt-support
# hello
qemu: uncaught target signal 11 (Segmentation fault) - core dumped
Segmentation fault
This is the probable cause of a problem I was trying to resolve with
docker, namely that running an aarch64 container hangs. To reproduce
*that*, follow the above steps, then:
# apt install docker.io
# docker run -it --rm --platform=linux/arm64 alpine:edge uname -m
(it hangs and never prints anything)
(which is different from the behaviour for e.g. 32 bit arm)
Could this be related to
- Debian bug https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=999421
- Upstream qemu issue https://gitlab.com/qemu-project/qemu/-/issues/555
?
Tony