diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-07-31 19:14:54 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-08-03 00:27:33 +0300 |
commit | ecf4024592a438387bc0cf694f6971715d7f5059 (patch) | |
tree | fd0f0e8132882827645be825cf8193996d959e01 | |
parent | 6306c56804dddcda1a0916d00be0fa927950cf92 (diff) | |
download | meson-ecf4024592a438387bc0cf694f6971715d7f5059.zip meson-ecf4024592a438387bc0cf694f6971715d7f5059.tar.gz meson-ecf4024592a438387bc0cf694f6971715d7f5059.tar.bz2 |
Add 32 bit sparc processor support. Closes #3901.
-rw-r--r-- | docs/markdown/Reference-tables.md | 1 | ||||
-rw-r--r-- | mesonbuild/environment.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/docs/markdown/Reference-tables.md b/docs/markdown/Reference-tables.md index 91a8e3c..989e649 100644 --- a/docs/markdown/Reference-tables.md +++ b/docs/markdown/Reference-tables.md @@ -55,6 +55,7 @@ set in the cross file. | parisc | HP PA-RISC processor | | riscv32 | 32 bit RISC-V Open ISA| | riscv64 | 64 bit RISC-V Open ISA| +| sparc | 32 bit SPARC | | sparc64 | SPARC v9 processor | Any cpu family not listed in the above list is not guaranteed to diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py index a20ef94..df4d05b 100644 --- a/mesonbuild/environment.py +++ b/mesonbuild/environment.py @@ -86,6 +86,7 @@ known_cpu_families = ( 'ppc64', 'riscv32', 'riscv64', + 'sparc', 'sparc64', 'x86', 'x86_64' |