syscalls: Fix clone on powerpc64le-linux.
authorChris Marusich <cmmarusich@gmail.com>
Sun, 21 Feb 2021 20:17:29 +0000 (12:17 -0800)
committerChris Marusich <cmmarusich@gmail.com>
Wed, 24 Mar 2021 06:19:57 +0000 (23:19 -0700)
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.

guix/build/syscalls.scm

index 4379768..a2c1d80 100644 (file)
@@ -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.