Module: Mesa Branch: main Commit: 8733d19f534f5988501c4155101850ab3a26c893 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=8733d19f534f5988501c4155101850ab3a26c893
Author: Dave Airlie <[email protected]> Date: Thu Jan 20 11:55:26 2022 +1000 meson: start building intel earlier. as intel perf is a big impact, start building the intel subdir earlier so there is less chance of long stalls at the end waiting for one file to link other things. Reviewed-by: Emma Anholt <[email protected]> Reviewed-by: Matt Turner <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14630> --- src/meson.build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/meson.build b/src/meson.build index 7cbbf74af78..eac75a3304b 100644 --- a/src/meson.build +++ b/src/meson.build @@ -79,6 +79,9 @@ endif if with_any_vk or with_gallium_zink subdir('vulkan') endif +if with_any_intel + subdir('intel') +endif if with_gallium_radeonsi or with_amd_vk subdir('amd') endif @@ -97,9 +100,6 @@ endif if with_gallium_virgl or with_virtio_vk subdir('virtio') endif -if with_any_intel - subdir('intel') -endif if with_microsoft_clc or with_gallium_d3d12 or with_spirv_to_dxil subdir('microsoft') endif
