Hi, zimoun <zimon.touto...@gmail.com> skribis:
> On Mon, 04 Jul 2022 at 15:40, Ludovic Courtès <l...@gnu.org> wrote: > >> Indeed, ‘guix build >> /gnu/store/v3kc0z1mx7zai6hky8kzlp171cxr2ccj-curl-7.84.0.drv’ fails with: > > [...] > >> Now, I don’t see where this .drv comes from. Here’s what I see on >> x86_64: > > I think it comes from a twist with i686: > > $ guix time-machine --commit=81cf674 \ > -- build --no-grafts \ > -e '(@@ (gnu packages curl) curl-7.84.0)' \ > -s i686-linux -d > /gnu/store/v3kc0z1mx7zai6hky8kzlp171cxr2ccj-curl-7.84.0.drv Oh I see, that’s because ‘wine’ forces #:system "i686-linux". Efraim fixed this a couple of days ago in c145e51844bf52eb77cdc969a0fe30a48755b29e by skipping the test. Apparently the failure was due to a resource constraint: changing NUM_THREADS from 1000 to 100 in lib3026.c helps makes it pass on i686-linux. Ludo’.