4 def architecture_support():
6 Config ISA related features
10 def arch_x86_32() -> bool:
14 def arch_x86_64() -> bool:
15 when(arch is "x86_64")
18 def arch_x86() -> bool:
20 when(arch is "x86_64")
23 def arch() -> "i386" | "x86_64":
38 print("unknown ARCH:", env("ARCH"), "default to x86_64")
43 def arch_bits() -> 32 | 64:
45 Defines the base size of a general register of the
48 This the 'bits' part when we are talking about a CPU