From c4717a2dd01c0f68e74baeeb9bdbf9a51588453a Mon Sep 17 00:00:00 2001 From: Mike Hommey Date: Thu, 15 Apr 2021 16:08:01 +0000 Subject: [PATCH] Bug 1705286 - Properly detect mips64. r=bbeurdouche Differential Revision: https://phabricator.services.mozilla.com/D112143 --HG-- extra : moz-landing-system : lando --- coreconf/detect_host_arch.py | 2 ++ 1 file changed, 2 insertions(+) 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)