diff options
author | Eric Dodd <eric.e.dodd@gmail.com> | 2020-05-21 08:45:44 -0400 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2020-06-10 20:21:47 +0300 |
commit | b9ef132576905049fdf3945ca863eb2674bcc777 (patch) | |
tree | eee40ca09da3c0790fa6469504bcfccca1bcd937 /mesonbuild/environment.py | |
parent | 29ef4478df6d3aaca40c7993f125b29409be1de2 (diff) | |
download | meson-irixfix.tar.gz |
Updated to resolve issue identifying SGI CPUs on IRIX systemsirixfix
Diffstat (limited to 'mesonbuild/environment.py')
-rw-r--r-- | mesonbuild/environment.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py index 8fad6288b..1b63111b4 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 |