From a3eafcfc95404bb1a6ad26394377000e5408cda9 Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Sat, 7 Dec 2024 01:07:58 +0000 Subject: [PATCH] mesa: build without libunwind and valgrind Configure build to never link against libunwind or valgrind. Prevents accidental linkage against those libraries in case they are present. Signed-off-by: Daniel Golle --- libs/mesa/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libs/mesa/Makefile b/libs/mesa/Makefile index 6ea39cc..a5b2379 100644 --- a/libs/mesa/Makefile +++ b/libs/mesa/Makefile @@ -507,6 +507,8 @@ MESON_HOST_ARGS += \ -Dglvnd=disabled \ -Dopengl=false \ -Dandroid-stub=false \ + -Dlibunwind=disabled \ + -Dvalgrind=disabled \ -Dgallium-drivers= \ -Dvulkan-drivers= \ -Dosmesa=false \ @@ -530,6 +532,8 @@ MESON_ARGS += \ -Dglvnd=disabled \ -Dopengl=true \ -Dandroid-stub=false \ + -Dlibunwind=disabled \ + -Dvalgrind=disabled \ -Dtools= \ -Dllvm=$(if $(MESA_USE_LLVM),en,dis)abled \ -Dshared-glapi=enabled \