summaryrefslogtreecommitdiff
path: root/coreconf/detect_host_arch.py
diff options
context:
space:
mode:
Diffstat (limited to 'coreconf/detect_host_arch.py')
-rw-r--r--coreconf/detect_host_arch.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/coreconf/detect_host_arch.py b/coreconf/detect_host_arch.py
index 8b505a6b5..a32b01034 100644
--- a/coreconf/detect_host_arch.py
+++ b/coreconf/detect_host_arch.py
@@ -15,6 +15,8 @@ def main():
host_arch = 'x64'
elif fnmatch.fnmatch(host_arch, 'i?86') or host_arch == 'i86pc':
host_arch = 'ia32'
+ elif host_arch == 'arm64':
+ pass
elif host_arch.startswith('arm'):
host_arch = 'arm'
elif host_arch.startswith('mips'):