Efraim Flashner <[email protected]> skribis:
> I have an armhf marsboard that I'm trying to run guix on top of debian. I
> started by flashing a debian wheezy image, stripping out most of the
> packages, and upgrading to jessie. I installed using the 0.8.2 armhf binary.
> `guix pull` failed with the error "unable to fork: Invalid argument", and
> likewise `guix build hello` also failed.
>
> I ran `sudo strace -o log /root/.guix-profile/bin/guix-daemon
> --build-users-group=guix-builder &`
Could you add -f so that child processes are traced?
sudo strace -f -o log /root/.guix-profile/bin/guix-daemon \
--build-users-group=guix-builder &
The main process doesn’t do the interesting bits.
TIA!
Ludo’.