summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-07-15 08:15:31 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-07-15 08:17:16 +0200
commit90f250e23ad71381819dac25d7c7c87383f88f7e (patch)
tree0eabe70be39f04c89e43f029b02876b766c253f2 /wscript
parentbuild: Fix format (diff)
downloadrtems-90f250e23ad71381819dac25d7c7c87383f88f7e.tar.bz2
build: Add the BSP family to the enable set
This makes it possible to use the BSP family in expressions of the enabled-by attribute.
Diffstat (limited to 'wscript')
-rwxr-xr-xwscript7
1 files changed, 6 insertions, 1 deletions
diff --git a/wscript b/wscript
index 487951fdba..1331ae149e 100755
--- a/wscript
+++ b/wscript
@@ -1387,7 +1387,12 @@ def configure_variant(conf, cp, bsp_map, path_list, top_group, variant):
# For the enabled-by evaluation we have to use the base BSP defined by the
# build specification and not the BSP name provided by the user.
- conf.env["ENABLE"] = [get_compiler(conf, cp, variant), arch, arch_bsp]
+ conf.env["ENABLE"] = [
+ get_compiler(conf, cp, variant),
+ arch,
+ arch_family,
+ arch_bsp,
+ ]
conf.env["TOP"] = conf.path.abspath()
conf.env["TOPGROUP"] = top_group