summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2016-05-12 14:36:01 -0400
committerAndrew Morrow <acm@mongodb.com>2017-03-21 14:01:15 -0400
commit21628d6b2311eb726c01244f6c5dba1edb1f6256 (patch)
tree87b21834be4e2d73fb7f737e78aca0eb0fed3e93 /SConstruct
parent39f71f9f17103d47ef9b1234cb506aa8ad420114 (diff)
downloadmongo-21628d6b2311eb726c01244f6c5dba1edb1f6256.tar.gz
SERVER-28390 Mark targets as Precious during incremental links
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct4
1 files changed, 4 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index 30c4f9bd32c..7a623fa5a4d 100644
--- a/SConstruct
+++ b/SConstruct
@@ -3006,6 +3006,10 @@ should_dagger = ( is_running_os('osx') or is_running_os('linux') ) and "dagger"
if should_dagger:
env.Tool("dagger")
+incremental_link = Tool('incremental_link')
+if incremental_link.exists(env):
+ incremental_link(env)
+
def checkErrorCodes():
import buildscripts.errorcodes as x
if x.checkErrorCodes() == False: