From 4a9b4dfb69ea523c6a1a68a25e7fc2e602482e94 Mon Sep 17 00:00:00 2001 From: Hiroshi Hatake Date: Thu, 24 Aug 2017 14:05:16 +0000 Subject: Handle aarch64 cpu_type --- python/servo/util.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'python/servo/util.py') diff --git a/python/servo/util.py b/python/servo/util.py index ad55d6b3f79..b839d9e2ca2 100644 --- a/python/servo/util.py +++ b/python/servo/util.py @@ -67,6 +67,8 @@ def host_triple(): cpu_type = "x86_64" elif cpu_type == "arm": cpu_type = "arm" + elif cpu_type == "aarch64": + cpu_type = "aarch64" else: cpu_type = "unknown" -- cgit v1.2.3