From 679c84142f7b787b59e0afecc22060dc1099080e Mon Sep 17 00:00:00 2001 From: Ilya K Date: Mon, 27 Mar 2023 11:41:35 +0000 Subject: [PATCH] intel/vk/grl: don't install libgrl.a It isn't used by anything at runtime and shouldn't be installed. Saves about 3MB of space on the final artifacts on x86_64-linux. Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/8711 Fixes: 63966505 ("anv/grl: Build OpenCL kernels") Reviewed-by: Lionel Landwerlin Part-of: --- src/intel/vulkan/grl/meson.build | 1 - 1 file changed, 1 deletion(-) diff --git a/src/intel/vulkan/grl/meson.build b/src/intel/vulkan/grl/meson.build index 7b8ef24..3d7567c 100644 --- a/src/intel/vulkan/grl/meson.build +++ b/src/intel/vulkan/grl/meson.build @@ -196,7 +196,6 @@ libgrl = static_library( ], link_whole : [grl_genX_libs], dependencies : [libgrl_deps, idep_anv_headers], - install : true, ) idep_grl = declare_dependency( link_with : libgrl, -- 2.7.4