From: Debian Qt/KDE Maintainers Date: Fri, 29 May 2026 20:58:53 +0000 (+0200) Subject: Fix build on x32 X-Git-Tag: archive/raspbian/6.10.2-3+rpi1^2~2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=4ea31d850148bc559c047c7787776a9e1db1f4e6;p=qt6-quick3d.git Fix build on x32 Origin: other, https://github.com/RenderKit/embree/issues/477 Bug: https://github.com/RenderKit/embree/issues/477 Gbp-Pq: Name embree_x32.patch --- diff --git a/src/3rdparty/embree/common/sys/platform.h b/src/3rdparty/embree/common/sys/platform.h index cd08a26..6790a02 100644 --- a/src/3rdparty/embree/common/sys/platform.h +++ b/src/3rdparty/embree/common/sys/platform.h @@ -36,7 +36,7 @@ #endif /* detect 64 bit platform */ -#if defined(__X86_64__) || defined(__aarch64__) +#if (defined(__X86_64__) || defined(__aarch64__)) && ! defined(__ILP32__) #define __64BIT__ #endif