fix(quickemu): only add 'topoext' cpu flag for x86_64 AMD guests

Signed-off-by: Martin Wimpress <martin@wimpress.org>
This commit is contained in:
Martin Wimpress 2026-01-25 22:56:02 +00:00 committed by Martin Wimpress
parent 0a16748db6
commit 1840c7b7c1
1 changed files with 1 additions and 1 deletions

View File

@ -726,7 +726,7 @@ function configure_cpu() {
;;
esac
if [ "${HOST_CPU_VENDOR}" == "AuthenticAMD" ] && [ "${guest_os}" != "macos" ]; then
if [ "${HOST_CPU_VENDOR}" == "AuthenticAMD" ] && [ "${guest_os}" != "macos" ] && [ "${ARCH_VM}" == "x86_64" ]; then
add_cpu_flag "topoext"
fi