mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 09:48:07 +02:00
vulkan: Remove nonexistent output in vk_synchronization_helpers target
I noticed that my NVK build was always LTOing the library twice
(I managed to trace it to the vk_synchronization_helpers change)
This change fixes the double compilation/LTO issue (which should
definitely cut packaging times a bit) 🐸
Fixes: fe12c1c29e ("vulkan: Add some auto-generated synchronization helpers")
Reviewed-by: Tatsuyuki Ishi <ishitatsuyuki@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26630>
This commit is contained in:
parent
09ae669fc5
commit
9342635903
1 changed files with 1 additions and 1 deletions
|
|
@ -222,7 +222,7 @@ vk_physical_device_properties = custom_target(
|
|||
vk_synchronization_helpers = custom_target(
|
||||
'vk_synchronization_helpers',
|
||||
input : [vk_synchronization_helpers_gen, vk_api_xml],
|
||||
output : ['vk_synchronization_helpers.c', 'vk_synchronization_helpers.h'],
|
||||
output : 'vk_synchronization_helpers.c',
|
||||
command : [
|
||||
prog_python, '@INPUT0@', '--xml', '@INPUT1@',
|
||||
'--out-c', '@OUTPUT0@',
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue