diff options
author | Colin Cross <ccross@android.com> | 2014-01-21 19:50:58 -0800 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2014-01-23 18:35:39 -0800 |
commit | d1973ca51325393f304e82a4d79874f33e54ac16 (patch) | |
tree | 75a657d895a41aa4855a06ef1e0e986c963e0eef /libc/tools/bionic_utils.py | |
parent | 5b4884fac90753c68d401de73036c2de919958eb (diff) | |
download | bionic-d1973ca51325393f304e82a4d79874f33e54ac16.zip bionic-d1973ca51325393f304e82a4d79874f33e54ac16.tar.gz bionic-d1973ca51325393f304e82a4d79874f33e54ac16.tar.bz2 |
bionic: rename aarch64 target to arm64
Rename aarch64 build targets to arm64. The gcc toolchain is still
aarch64.
Change-Id: Ia92d8a50824e5329cf00fd6f4f92eae112b7f3a3
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 39dc76a..88ddd55 100644 --- a/libc/tools/bionic_utils.py +++ b/libc/tools/bionic_utils.py @@ -2,7 +2,7 @@ import sys, os, commands, string -all_arches = [ "aarch64", "arm", "mips", "x86", "x86_64" ] +all_arches = [ "arm", "arm64", "mips", "x86", "x86_64" ] # basic debugging trace support # call D_setlevel to set the verbosity level |