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 <emma@anholt.net>
Reviewed-by: Matt Turner <mattst88@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14630>
This commit is contained in:
Dave Airlie 2022-01-20 11:55:26 +10:00 committed by Marge Bot
parent acc2d08cf9
commit 8733d19f53
1 changed files with 3 additions and 3 deletions

View File

@ -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