From 74a5362c157564692f5b3df8f023f47bdee11e99 Mon Sep 17 00:00:00 2001 From: WorksButNotTested <62701594+WorksButNotTested@users.noreply.github.com> Date: Mon, 19 May 2025 11:10:36 +0100 Subject: [PATCH] Add x86_64 architecture to QEMU in Dockerfile (#3250) --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 54b388e719..088eeedb5c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -87,11 +87,13 @@ RUN wget https://download.qemu.org/qemu-${QEMU_VER}.tar.xz && \ i386-linux-user,\ ppc-linux-user,\ mips-linux-user,\ + x86_64-linux-user,\ arm-softmmu,\ aarch64-softmmu,\ i386-softmmu,\ ppc-softmmu,\ - mips-softmmu" && \ + mips-softmmu,\ + x86_64-softmmu" && \ make -j && \ make install && \ cd /root && \