From dde7c7ed4637d1d9f7c44b139fc74aba7b3bb357 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Sat, 16 May 2026 11:18:15 +0200 Subject: [PATCH] meson/freedreno: only build libfreedreno_common when requested All users already `link_with` it, either directly or through `idep_libfreedreno_common` (the latter should probably be preferred, but I'll leave that to someone else). Part-of: --- src/freedreno/common/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/freedreno/common/meson.build b/src/freedreno/common/meson.build index f5f0b11b61f..59bd74a2ad5 100644 --- a/src/freedreno/common/meson.build +++ b/src/freedreno/common/meson.build @@ -35,7 +35,7 @@ libfreedreno_common = static_library( ], include_directories : [inc_freedreno, inc_include, inc_src], c_args : [no_override_init_args], - build_by_default : true, + build_by_default : false, dependencies: [idep_mesautil], gnu_symbol_visibility : 'hidden', )