summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 a32b01034..69fd960f6 100644
--- a/coreconf/detect_host_arch.py
+++ b/coreconf/detect_host_arch.py
@@ -19,6 +19,8 @@ def main():
pass
elif host_arch.startswith('arm'):
host_arch = 'arm'
+ elif host_arch.startswith('mips64'):
+ host_arch = 'mips64'
elif host_arch.startswith('mips'):
host_arch = 'mips'
print(host_arch)