From be090abf2ec2b2c86fa33cbd11ae8ef90205c311 Mon Sep 17 00:00:00 2001 From: Karol Herbst Date: Sat, 22 Jun 2024 20:26:48 +0200 Subject: [PATCH] rusticl: add bsymbolic to linker flags This will prevent the dynamic loader to pick the wrong function once we rename things to the proper API names. In any case, this should have been done all along anyway. Cc: mesa-stable Part-of: --- src/gallium/targets/rusticl/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/targets/rusticl/meson.build b/src/gallium/targets/rusticl/meson.build index dae80256b91..7bb918fcd6c 100644 --- a/src/gallium/targets/rusticl/meson.build +++ b/src/gallium/targets/rusticl/meson.build @@ -64,6 +64,7 @@ librusticl = shared_library( link_args : [ ld_args_build_id, ld_args_gc_sections, + ld_args_bsymbolic, rusticl_ld_args, ], link_depends : rusticl_ld_depends,