From 3b9395cd02c9611f32cea1abead058fd4f171726 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Mon, 2 Dec 2019 17:59:51 -0800 Subject: [PATCH] scons: Set the partial linking group for EXTRAS dirs. Partial linking heuristically links together files in the same directory by setting a special automatic tag. That tag needs to also be maintained when scanning EXTRAS dirs so that they don't all get lumped in with the last normal directory that was processed. Change-Id: I2408ea0a1eeffcf6d9994c36415a35760b225b17 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/23300 Reviewed-by: Jason Lowe-Power Maintainer: Jason Lowe-Power Tested-by: kokoro --- src/SConscript | 1 + 1 file changed, 1 insertion(+) diff --git a/src/SConscript b/src/SConscript index 15b801a1b..76bbb9e65 100644 --- a/src/SConscript +++ b/src/SConscript @@ -606,6 +606,7 @@ for extra_dir in extras_dir_list: if 'SConscript' in files: build_dir = joinpath(env['BUILDDIR'], root[prefix_len:]) + Source.set_group(build_dir) SConscript(joinpath(root, 'SConscript'), variant_dir=build_dir) for opt in export_vars: -- 2.30.2