diff options
Diffstat (limited to 'SConstruct')
-rwxr-xr-x | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index 2d61aa0f2..d229960c2 100755 --- a/SConstruct +++ b/SConstruct @@ -1048,7 +1048,7 @@ def is_isa_kvm_compatible(isa): return False if isa == "arm": - return host_isa == "armv7l" + return host_isa in ( "armv7l", "aarch64" ) elif isa == "x86": if host_isa != "x86_64": return False |