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.master
parent
a16eb6c5f9
commit
b57de27d03
|
@ -1021,6 +1021,7 @@ Turning finalization off shuts down the finalization thread as a side effect."
|
|||
("mips64" 5055)
|
||||
("armv7l" 120)
|
||||
("aarch64" 220)
|
||||
("ppc64le" 120)
|
||||
(_ #f))))
|
||||
(lambda (flags)
|
||||
"Create a new child process by duplicating the current parent process.
|
||||
|
|
Reference in New Issue