[Git][xorg-team/lib/mesa][debian-experimental] 4 commits: patches: Attempt to fix build on armhf.
"Timo Aaltonen (@tjaalton)" <[email protected]>
| Newsgroups | gmane.linux.debian.devel.x |
|---|---|
| Message-ID | <[email protected]> |
Timo Aaltonen pushed to branch debian-experimental at X Strike Force / lib / mesa Commits: 420b8879 by Timo Aaltonen at 2026-08-26T10:15:26+03:00 patches: Attempt to fix build on armhf. - - - - - 27c0e287 by Timo Aaltonen at 2026-08-26T10:16:01+03:00 releasing package mesa version 26.2.1-3 - - - - - 303c03b1 by Timo Aaltonen at 2026-08-26T11:11:16+03:00 rules: Disable radeonsi/radv on armhf, FTBFS. - - - - - a9ba6df6 by Timo Aaltonen at 2026-08-26T11:19:19+03:00 releasing package mesa version 26.2.1-4 - - - - - 2 changed files: - debian/changelog - debian/rules Changes: ===================================== debian/changelog ===================================== @@ -1,3 +1,15 @@ +mesa (26.2.1-4) experimental; urgency=medium + + * rules: Disable radeonsi/radv on armhf, FTBFS. + + -- Timo Aaltonen <[email protected]> Wed, 26 Aug 2026 11:19:13 +0300 + +mesa (26.2.1-3) experimental; urgency=medium + + * patches: Attempt to fix build on armhf. + + -- Timo Aaltonen <[email protected]> Wed, 26 Aug 2026 10:15:52 +0300 + mesa (26.2.1-2) experimental; urgency=medium * rules: Big-endian archs fail to build rusticl, so drop them from ===================================== debian/rules ===================================== @@ -143,10 +143,18 @@ else # LLVM is required for building r300g, radeonsi and llvmpipe drivers. # It's also required for building OpenCL support. ifneq (,$(filter $(DEB_HOST_ARCH), $(LLVM_ARCHS))) - GALLIUM_DEFAULTS += radeonsi zink - GALLIUM_DRIVERS += radeonsi zink llvmpipe - VULKAN_DEFAULTS += radv lavapipe venus - VULKAN_DRIVERS += amd swrast virtio + ifneq (,$(filter $(DEB_HOST_ARCH), armhf)) + GALLIUM_DEFAULTS += zink + GALLIUM_DRIVERS += zink llvmpipe + VULKAN_DEFAULTS += lavapipe venus + VULKAN_DRIVERS += swrast virtio + else + GALLIUM_DEFAULTS += radeonsi zink + GALLIUM_DRIVERS += radeonsi zink llvmpipe + VULKAN_DEFAULTS += radv lavapipe venus + VULKAN_DRIVERS += amd swrast virtio + + endif VULKAN_LAYERS += anti-lag device-select intel-nullhw overlay screenshot confflags_GALLIUM += -Dllvm=enabled View it on GitLab: https://salsa.debian.org/xorg-team/lib/mesa/-/compare/4665b5cb7aeb428a6f28864c4d30b0af828c92fa...a9ba6df660303cf36d69d7a8e8e7cf8513296e89 -- View it on GitLab: https://salsa.debian.org/xorg-team/lib/mesa/-/compare/4665b5cb7aeb428a6f28864c4d30b0af828c92fa...a9ba6df660303cf36d69d7a8e8e7cf8513296e89 You're receiving this email because of your account on salsa.debian.org. Manage all notifications: https://salsa.debian.org/-/profile/notifications | Help: https://salsa.debian.org/help