diff options
author | Eric Bavier <bavier@cray.com> | 2017-10-09 14:40:19 -0500 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2017-10-09 18:55:18 -0500 |
commit | 7f0bb6540ac05c080a4e76c9363018050c9661e8 (patch) | |
tree | 8178dfe8b8f19f19c7e5fb2ce28787833a440638 | |
parent | 735f6b63d05a55fb8e72d8678c06700cb7ef8059 (diff) |
syscalls: clone: Define syscall-id for aarch64.
* guix/build/syscalls.scm (clone): Define syscall-id for aarch64 machines.
-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 55b0df3911..e5779cbd0b 100644 --- a/guix/build/syscalls.scm +++ b/guix/build/syscalls.scm @@ -773,6 +773,7 @@ Turning finalization off shuts down the finalization thread as a side effect." ("x86_64" 56) ("mips64" 5055) ("armv7l" 120) + ("aarch64" 220) (_ #f)))) (lambda (flags) "Create a new child process by duplicating the current parent process. |