From: Daniel Golle Date: Sat, 7 Dec 2024 01:07:58 +0000 (+0000) Subject: mesa: build without libunwind and valgrind X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=a3eafcfc95404bb1a6ad26394377000e5408cda9;p=feed%2Fvideo.git 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 --- 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 \