diff options
-rw-r--r-- | docs/markdown/Reference-tables.md | 1 | ||||
-rw-r--r-- | mesonbuild/envconfig.py | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/docs/markdown/Reference-tables.md b/docs/markdown/Reference-tables.md index b177439..676a8ca 100644 --- a/docs/markdown/Reference-tables.md +++ b/docs/markdown/Reference-tables.md @@ -51,6 +51,7 @@ set in the cross file. | Value | Comment | | ----- | ------- | | aarch64 | 64 bit ARM processor | +| alpha | DEC Alpha processor | | arc | 32 bit ARC processor | | arm | 32 bit ARM processor | | e2k | MCST Elbrus processor | diff --git a/mesonbuild/envconfig.py b/mesonbuild/envconfig.py index 29d7422..de8ee16 100644 --- a/mesonbuild/envconfig.py +++ b/mesonbuild/envconfig.py @@ -37,6 +37,7 @@ _T = typing.TypeVar('_T') known_cpu_families = ( 'aarch64', + 'alpha', 'arc', 'arm', 'e2k', @@ -64,6 +65,7 @@ known_cpu_families = ( # python identifiers cannot start with numbers CPU_FAMILES_64_BIT = [ 'aarch64', + 'alpha', 'ia64', 'mips64', 'ppc64', |