diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2019-01-09 00:13:57 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-01-09 00:13:57 +0200 |
commit | 198de0de5d00e8dc77de717face58d9eebaf1539 (patch) | |
tree | 95f39f4f90d0ff218ea963087e71c006adb31201 /mesonbuild/environment.py | |
parent | 3bf2ca483e9ca80ee81ee0a07d5f5c9f36817bb3 (diff) | |
download | meson-198de0de5d00e8dc77de717face58d9eebaf1539.zip meson-198de0de5d00e8dc77de717face58d9eebaf1539.tar.gz meson-198de0de5d00e8dc77de717face58d9eebaf1539.tar.bz2 |
Report parisc64 as parisc. Closes #4714.
Diffstat (limited to 'mesonbuild/environment.py')
-rw-r--r-- | mesonbuild/environment.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py index e99174c..f287cb0 100644 --- a/mesonbuild/environment.py +++ b/mesonbuild/environment.py @@ -246,6 +246,10 @@ def detect_cpu_family(compilers): trial = 'arm' # Add more quirks here as bugs are reported. Keep in sync with detect_cpu() # below. + elif trial == 'parisc64': + # ATM there is no 64 bit userland for PA-RISC. Thus always + # report it as 32 bit for simplicity. + trial = 'parisc' if trial not in known_cpu_families: mlog.warning('Unknown CPU family {!r}, please report this at ' |