From 8cf7d87f61ea6014e1369216ebb437a3bf6e17b1 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Wed, 9 Sep 2026 18:14:57 -0400 Subject: [PATCH] Add alpha to the architecture feature The feature had no value for DEC Alpha, so a project that selects sources on had nothing to match on that target even once the architecture was detected. --- src/tools/features/architecture-feature.jam | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/tools/features/architecture-feature.jam b/src/tools/features/architecture-feature.jam index 3499328879..4f7267e6a6 100644 --- a/src/tools/features/architecture-feature.jam +++ b/src/tools/features/architecture-feature.jam @@ -10,7 +10,7 @@ import feature ; [[b2.builtin.features.architecture]]`architecture`:: *Allowed values:* `x86`, `ia64`, `sparc`, `power`, `mips`, `mips1`, `mips2`, `mips3`, `mips4`, `mips32`, `mips32r2`, `mips64`, `parisc`, `arm`, -`s390x`, `loongarch`. +`s390x`, `loongarch`, `alpha`. + Specifies the general processor family to generate code for. @@ -48,6 +48,9 @@ feature.feature architecture # z Systems (aka s390x) s390x + # DEC Alpha + alpha + # Combined architecture(s) arm+x86 :