mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01: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
5fcd674c1c
commit
c9113fc1d3
1 changed files with 1 additions and 0 deletions
|
@ -955,6 +955,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