diff options
author | Mukilan Thiyagarajan <mukilan@igalia.com> | 2024-09-09 20:08:01 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-09 14:38:01 +0000 |
commit | 52a447b1e37aea0712a5ef40a6e2c95f15148af4 (patch) | |
tree | f9b526ced393be9b07ae4ad29c1e93895b1d8748 /python/servo/command_base.py | |
parent | 8842fe9df580c4458d8ffe0247e49bae846ce6b6 (diff) | |
download | servo-52a447b1e37aea0712a5ef40a6e2c95f15148af4.tar.gz servo-52a447b1e37aea0712a5ef40a6e2c95f15148af4.zip |
android: make aarch64 the default target (#33379)
Signed-off-by: Mukilan Thiyagarajan <mukilan@igalia.com>
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r-- | python/servo/command_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py index b8fd132387d..4359d1c74ca 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -694,7 +694,7 @@ class CommandBase(object): # Set the default Android target if android and not target_triple: - target_triple = "armv7-linux-androideabi" + target_triple = "aarch64-linux-android" self.target = BuildTarget.from_triple(target_triple) |