Module: Mesa Branch: master Commit: fffc287d447089292d279c04ec999c673ea9103a URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=fffc287d447089292d279c04ec999c673ea9103a
Author: David McFarland <[email protected]> Date: Sun Jul 26 17:29:49 2020 -0300 radv: link with ld_args_build_id This is needed for radv_device_get_cache_uuid to work correctly. Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6081> --- src/amd/vulkan/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amd/vulkan/meson.build b/src/amd/vulkan/meson.build index e5fba9de21b..ba3a9e53b84 100644 --- a/src/amd/vulkan/meson.build +++ b/src/amd/vulkan/meson.build @@ -164,7 +164,7 @@ libvulkan_radeon = shared_library( ], c_args : [no_override_init_args, radv_flags], cpp_args : [radv_flags], - link_args : [ld_args_bsymbolic, ld_args_gc_sections], + link_args : [ld_args_build_id, ld_args_bsymbolic, ld_args_gc_sections], gnu_symbol_visibility : 'hidden', install : true, ) _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
