diff options
author | Hiroshi Hatake <cosmo0920.oucc@gmail.com> | 2017-08-24 14:05:16 +0000 |
---|---|---|
committer | Hiroshi Hatake <cosmo0920.oucc@gmail.com> | 2017-08-24 14:05:16 +0000 |
commit | 4a9b4dfb69ea523c6a1a68a25e7fc2e602482e94 (patch) | |
tree | 457d2ba729a4b7f0cb53e9b82c45164e50c899e9 /python/servo/util.py | |
parent | 474369618965569407d127b1e8c481e757cc59d3 (diff) | |
download | servo-4a9b4dfb69ea523c6a1a68a25e7fc2e602482e94.tar.gz servo-4a9b4dfb69ea523c6a1a68a25e7fc2e602482e94.zip |
Handle aarch64 cpu_type
Diffstat (limited to 'python/servo/util.py')
-rw-r--r-- | python/servo/util.py | 2 |
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" |