diff options
author | Ross Burton <ross@burtonini.com> | 2018-06-20 13:45:44 +0100 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2018-06-20 12:45:44 +0000 |
commit | ecde1789b2152b3e987b41afc390ffa031a390ec (patch) | |
tree | 73c7af92d6e8994499ef20540695ba36f98f6297 /docs/markdown/Reference-tables.md | |
parent | 9fdf4d83e66f27715b1f0e3b7f86ad8c5c997024 (diff) | |
download | meson-ecde1789b2152b3e987b41afc390ffa031a390ec.zip meson-ecde1789b2152b3e987b41afc390ffa031a390ec.tar.gz meson-ecde1789b2152b3e987b41afc390ffa031a390ec.tar.bz2 |
Validate cpu_family (#3753)
* environment: validate cpu_family in cross file
* run_unittests: add unittest to ensure CPU family list in docs and environment matches
* run_unittests: skip compiler options test if not in a git repository
* environment: validate the detected cpu_family
* docs: add 32-bit PowerPC and 32/64-bit MIPS to CPU Families table
Names gathered by booting Linux in Qemu and running:
$ python3
import platform; platform.machine()
Partial fix for #3751
Diffstat (limited to 'docs/markdown/Reference-tables.md')
-rw-r--r-- | docs/markdown/Reference-tables.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/markdown/Reference-tables.md b/docs/markdown/Reference-tables.md index d0a2c83..571866f 100644 --- a/docs/markdown/Reference-tables.md +++ b/docs/markdown/Reference-tables.md @@ -46,6 +46,9 @@ set in the cross file. | ia64 | Itanium processor | | arm | 32 bit ARM processor | | aarch64 | 64 bit ARM processor | +| mips | 32 bit MIPS processor | +| mips64 | 64 bit MIPS processor | +| ppc | 32 bit PPC processors (Big Endian) | | ppc64 | 64 bit PPC processors (Big Endian) | | ppc64le | 64 bit PPC processors (Little Endian) | | e2k | MCST Elbrus processor | |