scons: Use the scons environment when marshalling.
authorGabe Black <gabe.black@gmail.com>
Thu, 26 Mar 2020 10:07:53 +0000 (03:07 -0700)
committerGabe Black <gabeblack@google.com>
Thu, 26 Mar 2020 21:44:36 +0000 (21:44 +0000)
commitbb3bc1fdd07ba383005357d5a6213b6c8f6e59af
tree3cc01e79fbf88c3701037c24308aa37b975b72d0
parentaeb4b538011e0626abcd8276ee94769d7dc9119a
scons: Use the scons environment when marshalling.

scons maintains an environment (in the shell sense) in the ENV
construction variable for use when running external programs. When we
run the "marshal" program which gathers up python objects to embed in
the gem5 binary, it's run by subprocess instead of through scons, and it
uses its own environment inherited from the host system.

Instead, this change makes the subprocess function use the scons
environment when calling "marshal". This ensures the environment is
consistent between this command and other commands scons runs.

This is usually not very important, but some tools like asan take
options set through the environment, and they may need to be adjusted
sometimes.

Change-Id: I671b447657ed8fad45fac7393cc1c09073bf3d3a
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/27123
Reviewed-by: Nikos Nikoleris <nikos.nikoleris@arm.com>
Maintainer: Bobby R. Bruce <bbruce@ucdavis.edu>
Tested-by: kokoro <noreply+kokoro@google.com>
src/SConscript