syscalls: Fix clone on powerpc64le-linux.

This makes the clone procedure work correctly and fixes some test failures on
powerpc64le-linux, including tests/containers.scm.

* guix/build/syscalls.scm (clone): Add an entry for ppc64le.
This commit is contained in:
Chris Marusich 2021-02-21 12:17:29 -08:00
parent a16eb6c5f9
commit b57de27d03
No known key found for this signature in database
GPG key ID: DD409A15D822469D

View file

@ -1021,6 +1021,7 @@ (define clone
("mips64" 5055)
("armv7l" 120)
("aarch64" 220)
("ppc64le" 120)
(_ #f))))
(lambda (flags)
"Create a new child process by duplicating the current parent process.