Skip to content

Commit

Permalink
Bug 1705286 - Properly detect mips64. r=bbeurdouche
Browse files Browse the repository at this point in the history
Differential Revision: https://phabricator.services.mozilla.com/D112143

--HG--
extra : moz-landing-system : lando
  • Loading branch information
glandium committed Apr 15, 2021
1 parent 9dab433 commit c4717a2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions coreconf/detect_host_arch.py
Expand Up @@ -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)
Expand Down

0 comments on commit c4717a2

Please sign in to comment.