From 74976640b3803d2ac7dab91e7d57d7b6383e06c4 Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Thu, 5 May 2022 12:43:25 +1000 Subject: [PATCH] meson: add build-id to pipe libraries Without this the cache setup was crashing with CL and the dynamic pipe libraries. Reported and debugged on irc by consolers Cc: mesa-stable Acked-by: Karol Herbst Part-of: --- src/gallium/targets/pipe-loader/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/targets/pipe-loader/meson.build b/src/gallium/targets/pipe-loader/meson.build index 1d38c1a5b1b..291c4844906 100644 --- a/src/gallium/targets/pipe-loader/meson.build +++ b/src/gallium/targets/pipe-loader/meson.build @@ -18,7 +18,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -pipe_loader_link_args = [ld_args_gc_sections] +pipe_loader_link_args = [ld_args_gc_sections, ld_args_build_id] pipe_loader_link_deps = [] pipe_loader_link_with = [libgallium] pipe_loader_comp_args = []