mesa: re-disable Intel RT on 32-bit targets

This seems to have been unintentional upstream - only x86_64
and aarch64 are supported.

https://gitlab.freedesktop.org/mesa/mesa/-/commit/9436a96c1076c282f7ddadeda9d1a5819478b099
This commit is contained in:
K900
2025-08-06 21:56:17 +03:00
parent 3665f43145
commit 14e912f44d
@@ -224,6 +224,9 @@ stdenv.mkDerivation {
# Disable valgrind on targets where it's not available
(lib.mesonEnable "valgrind" withValgrind)
# Enable Intel RT stuff when available
(lib.mesonEnable "intel-rt" (stdenv.hostPlatform.isx86_64 or stdenv.hostPlatform.isAarch64))
# meson auto_features enables these, but we do not want them
(lib.mesonEnable "gallium-mediafoundation" false) # Windows only
(lib.mesonEnable "android-libbacktrace" false) # Android only