From 1f3bfb0afe4beefc91a5440857d468a4de3979ca Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Sat, 14 May 2022 17:05:54 +0100 Subject: [PATCH] d/rules: Work around llvmpipe segfault on mipsel by forcing softpipe Mitigates: #1010838 --- debian/rules | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/debian/rules b/debian/rules index 8c72b13555..094f60e7e1 100755 --- a/debian/rules +++ b/debian/rules @@ -255,6 +255,11 @@ ifeq (big,$(DEB_HOST_ARCH_ENDIAN)) $(NULL) endif +# Workaround for https://bugs.debian.org/1010838 +ifeq (mipsel,$(DEB_HOST_ARCH_CPU)) +export GALLIUM_DRIVER=softpipe +endif + override_dh_auto_test: env \ BUILDDIR=debian/build/deb \ -- 2.30.2