From 52a447b1e37aea0712a5ef40a6e2c95f15148af4 Mon Sep 17 00:00:00 2001 From: Mukilan Thiyagarajan Date: Mon, 9 Sep 2024 20:08:01 +0530 Subject: android: make aarch64 the default target (#33379) Signed-off-by: Mukilan Thiyagarajan --- python/servo/command_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/servo/command_base.py') 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) -- cgit v1.2.3