summaryrefslogtreecommitdiff
path: root/coreconf
diff options
context:
space:
mode:
authorMike Hommey <mh@glandium.org>2021-04-15 16:08:01 +0000
committerMike Hommey <mh@glandium.org>2021-04-15 16:08:01 +0000
commitbc41fcda947dbe8cf2f26c7cabc6cfbfb5eadade (patch)
treec0b98616df3b809e9440fccc082d6b747901ab29 /coreconf
parent01d6bbcadc9e1697be4890bb2cf265ea113bad4b (diff)
downloadnss-hg-bc41fcda947dbe8cf2f26c7cabc6cfbfb5eadade.tar.gz
Bug 1705286 - Properly detect mips64. r=bbeurdoucheNSS_3_64_BETA1
Differential Revision: https://phabricator.services.mozilla.com/D112143
Diffstat (limited to 'coreconf')
-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)