Handle aarch64 cpu_type

This commit is contained in:
Hiroshi Hatake 2017-08-24 14:05:16 +00:00
parent 4743696189
commit 4a9b4dfb69

View file

@ -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"