Add x86_64 architecture to QEMU in Dockerfile (#3250)

This commit is contained in:
WorksButNotTested 2025-05-19 11:10:36 +01:00 committed by GitHub
parent 90223028fd
commit 74a5362c15
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 && \