New comment by faithanalog on void-packages repository https://github.com/void-linux/void-packages/issues/37349#issuecomment-1153084725 Comment: would love to this fixed because it affects my poulsbo hardware (intel atom netbook, no working hardware acceleration unless you use a 3.x kernel and a proprietary module/userspace). Me and a few friends use these things on the regular and we either custom compile mesa or use other distributions which have llvmpipe enabled (like debian). anyways the fix is a one-liner, just ``` diff --git a/srcpkgs/mesa/template b/srcpkgs/mesa/template index c90500de74..172d9c12ff 100644 --- a/srcpkgs/mesa/template +++ b/srcpkgs/mesa/template @@ -32,7 +32,7 @@ fi # especially on big endian it's all kinds of broken, and e.g. on # 32-bit powerpc it does not work at all, so fall back to softpipe case "$XBPS_TARGET_MACHINE" in - x86_64*|aarch64*|ppc64le*|arm*) ;; + i686*|x86_64*|aarch64*|ppc64le*|arm*) ;; *) configure_args+=" -Ddraw-use-llvm=false" ;; esac ```