envconfig: Add Alpha CPU family

pull/6049/head
Matt Turner 5 years ago committed by Jussi Pakkanen
parent 5dfd054c32
commit 20519a0e1a
  1. 1
      docs/markdown/Reference-tables.md
  2. 2
      mesonbuild/envconfig.py

@ -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 |

@ -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',

Loading…
Cancel
Save