aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/util.py
diff options
context:
space:
mode:
authorHiroshi Hatake <cosmo0920.oucc@gmail.com>2017-08-24 14:05:16 +0000
committerHiroshi Hatake <cosmo0920.oucc@gmail.com>2017-08-24 14:05:16 +0000
commit4a9b4dfb69ea523c6a1a68a25e7fc2e602482e94 (patch)
tree457d2ba729a4b7f0cb53e9b82c45164e50c899e9 /python/servo/util.py
parent474369618965569407d127b1e8c481e757cc59d3 (diff)
downloadservo-4a9b4dfb69ea523c6a1a68a25e7fc2e602482e94.tar.gz
servo-4a9b4dfb69ea523c6a1a68a25e7fc2e602482e94.zip
Handle aarch64 cpu_type
Diffstat (limited to 'python/servo/util.py')
-rw-r--r--python/servo/util.py2
1 files changed, 2 insertions, 0 deletions
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"