diff options
author | Chris Marusich <cmmarusich@gmail.com> | 2021-02-21 12:17:29 -0800 |
---|---|---|
committer | Chris Marusich <cmmarusich@gmail.com> | 2021-03-23 23:19:57 -0700 |
commit | b57de27d0331198c9cafb09a1cf8a5fa4f691e36 (patch) | |
tree | 299f6403b58a6b6d7048279ad1e8628325c4e95c | |
parent | a16eb6c5f97f136b678540ba61f12b2c08e43e13 (diff) | |
download | guix-b57de27d0331198c9cafb09a1cf8a5fa4f691e36.tar.gz guix-b57de27d0331198c9cafb09a1cf8a5fa4f691e36.zip |
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.
-rw-r--r-- | guix/build/syscalls.scm | 1 |
1 files changed, 1 insertions, 0 deletions
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. |