mirror of
https://github.com/servo/servo.git
synced 2025-06-18 13:24:29 +00:00
Handle aarch64 cpu_type
This commit is contained in:
parent
4743696189
commit
4a9b4dfb69
1 changed files with 2 additions and 0 deletions
|
@ -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"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue