aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/environment.py
diff options
context:
space:
mode:
authorEric Dodd <eric.e.dodd@gmail.com>2020-05-21 08:45:44 -0400
committerJussi Pakkanen <jpakkane@gmail.com>2020-06-10 22:16:14 +0300
commit71d68a940bdb31f0d66448fa9bde9abf403b54f2 (patch)
tree2169c0bcb301296f17437ead7fb82e21a067d091 /mesonbuild/environment.py
parentf6a842821b64653de042633e714af3c5a5326c29 (diff)
downloadmeson-71d68a940bdb31f0d66448fa9bde9abf403b54f2.zip
meson-71d68a940bdb31f0d66448fa9bde9abf403b54f2.tar.gz
meson-71d68a940bdb31f0d66448fa9bde9abf403b54f2.tar.bz2
Updated to resolve issue identifying SGI CPUs on IRIX systems
Diffstat (limited to 'mesonbuild/environment.py')
-rw-r--r--mesonbuild/environment.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py
index cb6ae7d..4feb44c 100644
--- a/mesonbuild/environment.py
+++ b/mesonbuild/environment.py
@@ -344,6 +344,9 @@ def detect_cpu_family(compilers: CompilersDict) -> str:
trial = 'sparc64'
elif trial in {'mipsel', 'mips64el'}:
trial = trial.rstrip('el')
+ elif trial in {'ip30', 'ip35'}:
+ trial = 'mips64'
+
# On Linux (and maybe others) there can be any mixture of 32/64 bit code in
# the kernel, Python, system, 32-bit chroot on 64-bit host, etc. The only