From f21d0f2cbeafb2d36217bf30732b5a95dc7fd385 Mon Sep 17 00:00:00 2001 From: Aitor Camacho Date: Thu, 2 Oct 2025 11:30:59 +0200 Subject: [PATCH] meson: static link spirv-tools for darwin Part-of: --- meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index e32ebd3f2f2..8427d26dc3d 100644 --- a/meson.build +++ b/meson.build @@ -1854,7 +1854,8 @@ with_spirv_tools = get_option('spirv-tools') \ dep_spirv_tools = dependency( 'SPIRV-Tools', required : with_spirv_tools, - version : '>= 2024.1' + version : '>= 2024.1', + static : host_machine.system() == 'darwin', ) if dep_spirv_tools.found() pre_args += '-DHAVE_SPIRV_TOOLS'