summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorRyan Egesdahl <ryan.egesdahl@mongodb.com>2021-10-22 15:58:36 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-10-22 17:28:28 +0000
commit6efcb2e9e9e392a3e2aa4985669f02fdf00e8117 (patch)
tree9720e1c296a82b3c70fc87331506d72dbca0e987 /SConstruct
parent3ed974c923ccbc97f55335c5c99b00cc0e5dad73 (diff)
downloadmongo-6efcb2e9e9e392a3e2aa4985669f02fdf00e8117.tar.gz
SERVER-60671 Remove the Dagger tool
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct13
1 files changed, 0 insertions, 13 deletions
diff --git a/SConstruct b/SConstruct
index db86ae11ddf..d06ae4ad9a4 100644
--- a/SConstruct
+++ b/SConstruct
@@ -4982,13 +4982,6 @@ if split_dwarf.exists(env):
if get_option('ninja') == 'disabled':
env.Tool("compilation_db")
-# If we can, load the dagger tool for build dependency graph introspection.
-# Dagger is only supported on Linux and OSX (not Windows or Solaris).
-should_dagger = ( mongo_platform.is_running_os('osx') or mongo_platform.is_running_os('linux') ) and "dagger" in COMMAND_LINE_TARGETS
-
-if should_dagger:
- env.Tool("dagger")
-
incremental_link = Tool('incremental_link')
if incremental_link.exists(env):
incremental_link(env)
@@ -5358,12 +5351,6 @@ env.SConscript(
],
)
-# run the Dagger tool if it's installed
-if should_dagger:
- dagger = env.Dagger('library_dependency_graph.json')
- env.Depends(dagger, env.Alias("install-all"))
- dependencyDb = env.Alias("dagger", dagger)
-
# Declare the cache prune target
cachePrune = env.Command(
target="#cache-prune",