From 773f84ccc9aada8d2c6299380976c24a5fd197e5 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 12 Mar 2025 15:22:59 -0400 Subject: [PATCH] meson: add i915 to 'all' build for gallium-drivers Reviewed-by: Eric Engestrom Reviewed-by: Alyssa Rosenzweig Part-of: --- meson.build | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/meson.build b/meson.build index 7f0d8eb5862..9b910c95195 100644 --- a/meson.build +++ b/meson.build @@ -168,10 +168,8 @@ if gallium_drivers.contains('auto') host_machine.system())) endif elif gallium_drivers.contains('all') - # Build-test everything except for i915, which depends on libdrm-intel which - # is not available on non-Intel distros. gallium_drivers = [ - 'r300', 'r600', 'radeonsi', 'crocus', 'v3d', 'vc4', 'freedreno', 'etnaviv', + 'r300', 'r600', 'radeonsi', 'crocus', 'v3d', 'vc4', 'freedreno', 'etnaviv', 'i915', 'nouveau', 'svga', 'tegra', 'virgl', 'lima', 'panfrost', 'llvmpipe', 'softpipe', 'iris', 'zink', 'd3d12', 'asahi' ] @@ -1562,10 +1560,6 @@ if with_any_intel and ['x86', 'x86_64'].contains(host_machine.cpu_family()) pre_args += '-DSUPPORT_INTEL_INTEGRATED_GPUS' endif -if with_gallium_i915 and host_machine.cpu_family().startswith('x86') == false - error('Intel "i915" Gallium driver requires x86 or x86_64 CPU family') -endif - # Determine whether or not the rt library is needed for time functions if host_machine.system() == 'windows' or cc.has_function('clock_gettime') dep_clock = null_dep