From: Xiaoyao Li Date: Wed, 25 Jun 2025 07:33:10 +0000 (+0800) Subject: i386/tdx: Build TDX only for 64-bit target X-Git-Tag: v10.1.0-rc0~33^2~23 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=34ea448263a8dad7443bfeaf5eca75e49abc5865;p=thirdparty%2Fqemu.git i386/tdx: Build TDX only for 64-bit target Build errors related to TDX were reported when QEMU built on 32-bit host[1][2]. Since TDX cannot work on 32-bit host and it's also not worth supporting TDX with 32-bit QEMU, limit TDX to 64-bit target only. [1] https://lore.kernel.org/qemu-devel/20250602173101.1052983-1-clg@redhat.com/ [2] https://lore.kernel.org/qemu-devel/b8171c39-6a92-4078-a59a-a63d7452e1e9@kaod.org/ Suggested-by: Cédric Le Goater Signed-off-by: Xiaoyao Li Reviewed-by: Zhao Liu Tested-by: Cédric Le Goater Reviewed-by: Cédric Le Goater Link: https://lore.kernel.org/qemu-devel/20250625073310.2796298-1-xiaoyao.li@intel.com Signed-off-by: Cédric Le Goater --- diff --git a/hw/i386/Kconfig b/hw/i386/Kconfig index eb65bda6e07..14d23e27b58 100644 --- a/hw/i386/Kconfig +++ b/hw/i386/Kconfig @@ -13,7 +13,7 @@ config SGX config TDX bool select X86_FW_OVMF - depends on KVM + depends on KVM && X86_64 config PC bool