diff options
author | Andrew Morrow <acm@mongodb.com> | 2016-05-12 14:36:01 -0400 |
---|---|---|
committer | Andrew Morrow <acm@mongodb.com> | 2017-03-21 14:01:15 -0400 |
commit | 21628d6b2311eb726c01244f6c5dba1edb1f6256 (patch) | |
tree | 87b21834be4e2d73fb7f737e78aca0eb0fed3e93 /site_scons | |
parent | 39f71f9f17103d47ef9b1234cb506aa8ad420114 (diff) | |
download | mongo-21628d6b2311eb726c01244f6c5dba1edb1f6256.tar.gz |
SERVER-28390 Mark targets as Precious during incremental links
Diffstat (limited to 'site_scons')
-rw-r--r-- | site_scons/site_tools/incremental_link.py | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/site_scons/site_tools/incremental_link.py b/site_scons/site_tools/incremental_link.py new file mode 100644 index 00000000000..cf74ef9674c --- /dev/null +++ b/site_scons/site_tools/incremental_link.py @@ -0,0 +1,45 @@ +# Copyright 2017 MongoDB Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import SCons + +def _tag_as_precious(target, source, env): + env.Precious(target) + return target, source + +def generate(env): + builders = env['BUILDERS'] + for builder in ('Program', 'SharedLibrary', 'LoadableModule'): + emitter = builders[builder].emitter + builders[builder].emitter = SCons.Builder.ListEmitter([ + emitter, + _tag_as_precious, + ]) + +def exists(env): + # By default, the windows linker is incremental, so unless + # overridden in the environment with /INCREMENTAL:NO, the tool is + # in play. + if env.TargetOSIs('windows') and not "/INCREMENTAL:NO" in env['LINKFLAGS']: + return True + + # On posix platforms, excluding darwin, we may have enabled + # incremental linking. Check for the relevant flags. + if env.TargetOSIs('posix') and \ + not env.TargetOSIs('darwin') and \ + "-fuse-ld=gold" in env['LINKFLAGS'] and \ + "-Wl,--incremental" in env['LINKFLAGS']: + return True + + return False |