diff options
author | Serban Constantinescu <serban.constantinescu@arm.com> | 2013-10-07 16:49:09 +0100 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2013-10-28 16:16:34 -0700 |
commit | feaa89a1bcc643a9c3892bb56e020e00779bbb3a (patch) | |
tree | 6dcf3924797a62d3dbcf258ccf67ebc26aa0d268 /libc/tools/bionic_utils.py | |
parent | 07d3c6cecc8016577c9dbd827e85154c077604da (diff) | |
download | bionic-feaa89a1bcc643a9c3892bb56e020e00779bbb3a.zip bionic-feaa89a1bcc643a9c3892bb56e020e00779bbb3a.tar.gz bionic-feaa89a1bcc643a9c3892bb56e020e00779bbb3a.tar.bz2 |
AArch64: Add support for AArch64 to the syscall interface
This patch adds support for AArch64 to the syscall interface. The kernel
implementation exports a set of canonical syscalls, therefore some of
the userspace exported syscalls are implemented as stubs based on the
canonical set.
Change-Id: Ia965d71e97769b8be9d7655193fc40303964c4df
Signed-off-by: Serban Constantinescu <serban.constantinescu@arm.com>
Diffstat (limited to 'libc/tools/bionic_utils.py')
-rw-r--r-- | libc/tools/bionic_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/tools/bionic_utils.py b/libc/tools/bionic_utils.py index f8d8897..39dc76a 100644 --- a/libc/tools/bionic_utils.py +++ b/libc/tools/bionic_utils.py @@ -2,7 +2,7 @@ import sys, os, commands, string -all_arches = [ "arm", "mips", "x86", "x86_64" ] +all_arches = [ "aarch64", "arm", "mips", "x86", "x86_64" ] # basic debugging trace support # call D_setlevel to set the verbosity level |