From bc41fcda947dbe8cf2f26c7cabc6cfbfb5eadade Mon Sep 17 00:00:00 2001 From: Mike Hommey Date: Thu, 15 Apr 2021 16:08:01 +0000 Subject: Bug 1705286 - Properly detect mips64. r=bbeurdouche Differential Revision: https://phabricator.services.mozilla.com/D112143 --- coreconf/detect_host_arch.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'coreconf') 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) -- cgit v1.2.1