> > > I've also attempted to cross-compile the system (from x86_64) but > > there is at least one package that can't be build - guile-fibers- > > 1.1.0. I've attached the build log as well. > > > This one should now be fixed by > > 1f82602153 gnu: guile-fibers@1.1: Support cross-compilation. > > Greetings, > Maxime. Yes, guile-fibers are now fixed, but the cross compile build fails now on shepherd-0.9 due to guile-fibers not being available. Also the NTP requires this configure flag. diff --git a/gnu/packages/ntp.scm b/gnu/packages/ntp.scm index 7a3c033b2e..cb90432730 100644 --- a/gnu/packages/ntp.scm +++ b/gnu/packages/ntp.scm @@ -153,7 +153,8 @@ (define-public ntp `(("libcap" ,libcap)) '()))) (arguments - `(#:phases + `(#:configure-flags (list "--with-yielding-select=yes") + #:phases (modify-phases %standard-phases (add-after 'unpack 'disable-network-test (lambda _ ---- Petr