summaryrefslogtreecommitdiff
path: root/buildscripts/scons.py
diff options
context:
space:
mode:
authorRyan Egesdahl <ryan.egesdahl@mongodb.com>2020-10-20 08:43:36 -0700
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-11-26 08:56:00 +0000
commit82ef2151223ec184682e752436ac07916500253f (patch)
tree656de495698932e1fecd1725f6e4b95786193109 /buildscripts/scons.py
parent515723d10def74299cf7729148f946b538b82797 (diff)
downloadmongo-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 'buildscripts/scons.py')
-rwxr-xr-xbuildscripts/scons.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/buildscripts/scons.py b/buildscripts/scons.py
index 8d26f5057cf..6143dc7e3b6 100755
--- a/buildscripts/scons.py
+++ b/buildscripts/scons.py
@@ -23,4 +23,5 @@ except ImportError as import_err:
print("ImportError:", import_err)
sys.exit(1)
-SCons.Script.main()
+if __name__ == '__main__':
+ SCons.Script.main()