When building the "notmuch" email indexer, the configure script tests that gmime can extract a session key, which it does using gcrypt. Since 1.12.0 this frequently, though not always, fails on i386 (32-bit).
This is not changed by applying the patch
https://lists.gnupg.org/pipermail/gcrypt-devel/2026-January/006025.html
The problem is no longer seen after neutering part of
https://git.gnupg.org/cgi-bin/gitweb.cgi?p=libgcrypt.git;a=commit;h=4f56fd8c5e03f389a9f27a5e9206b9dfb49c92e3
Index: mpi/ec.c --- mpi/ec.c.orig +++ mpi/ec.c @@ -305,7 +305,7 @@ ec_mod (gcry_mpi_t w, mpi_ec_t ec) else _gcry_mpi_mod (w, w, ec->p); - if ((ec->flags & GCRYECC_FLAG_LEAST_LEAK)) + if (0 && (ec->flags & GCRYECC_FLAG_LEAST_LEAK)) w->nlimbs = ec->p->nlimbs; }