diff options
author | Ryan Egesdahl <ryan.egesdahl@mongodb.com> | 2020-10-20 08:43:36 -0700 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-11-26 08:56:00 +0000 |
commit | 82ef2151223ec184682e752436ac07916500253f (patch) | |
tree | 656de495698932e1fecd1725f6e4b95786193109 /src/mongo/scripting/SConscript | |
parent | 515723d10def74299cf7729148f946b538b82797 (diff) | |
download | mongo-82ef2151223ec184682e752436ac07916500253f.tar.gz |
SERVER-48291 Add global dependency pushdown to libdeps
We sometimes have situations where a dependency applies at a large
scope, such as in the case of tcmalloc, which can apply everywhere. What
we have done previously is to hack these dependencies into the LIBDEPS
environment variable by adding a builder to all nodes that can produce a
compiler result. This is, as stated previously, hackish and hard to
control, and it results in adding a Public dependency to all those
nodes.
What we now do instead is to define LIBDEPS_GLOBAL on the *build
environment* (not the Builder node) listing the targets we would like to
push down to all other nodes below that point. This has the effect of
adding those targets as Private dependencies on all Builder nodes from
that point downward, which means some common Public dependencies can be
converted to a Private dependency that is stated only once.
Diffstat (limited to 'src/mongo/scripting/SConscript')
-rw-r--r-- | src/mongo/scripting/SConscript | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mongo/scripting/SConscript b/src/mongo/scripting/SConscript index 30ca99b52ae..029913fcbc9 100644 --- a/src/mongo/scripting/SConscript +++ b/src/mongo/scripting/SConscript @@ -1,7 +1,5 @@ # -*- mode: python -*- -import libdeps - Import([ 'env', 'get_option', |