diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-06-10 15:20:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-10 15:20:59 +0200 |
commit | 1aeb88205d0e1672670bea8c210be6b3e1269fe1 (patch) | |
tree | c1a0284d1587c2b8dc4359311280eb139cbe0121 /SConstruct | |
parent | 1760c13db98f822239fd3ec3f0437086016f905e (diff) | |
parent | 42bee75e86e81fcd9b51b2e960d13b89b18ad4bf (diff) |
Merge pull request #37248 from Xrayez/env-dump
SCons: Dump construction environment to a file
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index b424363dc8..9496595a26 100644 --- a/SConstruct +++ b/SConstruct @@ -693,6 +693,9 @@ elif selected_platform != "": else: Exit(255) -# The following only makes sense when the env is defined, and assumes it is +# The following only makes sense when the 'env' is defined, and assumes it is. if "env" in locals(): methods.show_progress(env) + # TODO: replace this with `env.Dump(format="json")` + # once we start requiring SCons 4.0 as min version. + methods.dump(env) |