- mesa/wayland/wayland-protocols/libdrm/seatd/samurai/meson + patches: batch C de gráficos previo que jamás se mandó al worker, arrastrado en incoming/. Parqueado en tandas/hold-nongo/. - syncthing: build especial (genera la GUI embebida 'auto.Assets' vía go generate/build.go) ⇒ diferida a staged-fallidos con el motivo. Quedan 18 go-12 limpias en la cola.
28 lines
1.0 KiB
Diff
28 lines
1.0 KiB
Diff
From db9728708d8a06f60bb850788d4cde487ac671f4 Mon Sep 17 00:00:00 2001
|
|
From: Alessandro Astone <ales.astone@gmail.com>
|
|
Date: Sun, 1 Mar 2026 18:14:09 +0100
|
|
Subject: [PATCH] gallivm: Fix armhf build against LLVM 22
|
|
|
|
StringMapIterator<bool> became StringMapIterBase<bool, false /* IsConst */>;
|
|
Use `auto` to handle either case.
|
|
---
|
|
src/gallium/auxiliary/gallivm/lp_bld_misc.cpp | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
|
|
index ce8ca02bf745..86779f013c7b 100644
|
|
--- a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
|
|
+++ b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
|
|
@@ -331,7 +331,7 @@ lp_build_fill_mattrs(std::vector<std::string> &MAttrs)
|
|
llvm::sys::getHostCPUFeatures(features);
|
|
#endif
|
|
|
|
- for (llvm::StringMapIterator<bool> f = features.begin();
|
|
+ for (auto f = features.begin();
|
|
f != features.end();
|
|
++f) {
|
|
MAttrs.push_back(((*f).second ? "+" : "-") + (*f).first().str());
|
|
--
|
|
GitLab
|
|
|