diff --git a/coreconf/detect_host_arch.py b/coreconf/detect_host_arch.py index a32b010341..69fd960f65 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)