mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 04:37:36 -05:00
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:
parent
a16eb6c5f9
commit
b57de27d03
1 changed files with 1 additions and 0 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue