From: Chris Marusich Date: Sun, 21 Feb 2021 20:17:29 +0000 (-0800) Subject: syscalls: Fix clone on powerpc64le-linux. X-Git-Url: https://git.hcoop.net/jackhill/guix/guix.git/commitdiff_plain/b57de27d0331198c9cafb09a1cf8a5fa4f691e36 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. --- diff --git a/guix/build/syscalls.scm b/guix/build/syscalls.scm index 4379768f5e..a2c1d80fb1 100644 --- a/guix/build/syscalls.scm +++ b/guix/build/syscalls.scm @@ -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.