Commit 14e912f4 authored by K900's avatar K900
Browse files

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
parent 3665f431
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -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