summaryrefslogtreecommitdiff
path: root/site_scons
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2016-06-08 11:28:07 -0400
committerAndrew Morrow <acm@mongodb.com>2017-03-21 14:00:46 -0400
commit39f71f9f17103d47ef9b1234cb506aa8ad420114 (patch)
tree1e4586e7bd74488be30eb02f85b6df52a3e0d010 /site_scons
parentcbbdb02faead044e07b5a7d957298cdc07cc9258 (diff)
downloadmongo-39f71f9f17103d47ef9b1234cb506aa8ad420114.tar.gz
SERVER-20540 Add an emitter for .dwo generated by -gsplit-dwarf
Diffstat (limited to 'site_scons')
-rw-r--r--site_scons/site_tools/compilation_db.py34
-rw-r--r--site_scons/site_tools/split_dwarf.py65
2 files changed, 85 insertions, 14 deletions
diff --git a/site_scons/site_tools/compilation_db.py b/site_scons/site_tools/compilation_db.py
index be040a84d0e..c452736fb00 100644
--- a/site_scons/site_tools/compilation_db.py
+++ b/site_scons/site_tools/compilation_db.py
@@ -30,6 +30,16 @@ import itertools
# communicate more gracefully?
__COMPILATION_DB_ENTRIES=[]
+# Cribbed from Tool/cc.py and Tool/c++.py. It would be better if
+# we could obtain this from SCons.
+_CSuffixes = ['.c']
+if not SCons.Util.case_sensitive_suffixes('.c', '.C'):
+ _CSuffixes.append('.C')
+
+_CXXSuffixes = ['.cpp', '.cc', '.cxx', '.c++', '.C++']
+if SCons.Util.case_sensitive_suffixes('.c', '.C'):
+ _CXXSuffixes.append('.C')
+
# We make no effort to avoid rebuilding the entries. Someday, perhaps we could and even
# integrate with the cache, but there doesn't seem to be much call for it.
class __CompilationDbNode(SCons.Node.Node):
@@ -100,20 +110,15 @@ def generate(env, **kwargs):
static_obj, shared_obj = SCons.Tool.createObjBuilders(env)
- # TODO: Is there a way to obtain the configured suffixes for C and C++
- # from the existing obj builders? Seems unfortunate to re-iterate them.
- CSuffixes = ['.c']
- CXXSuffixes = ['.cc', '.cxx', '.cpp']
-
env['COMPILATIONDB_COMSTR'] = kwargs.get(
'COMPILATIONDB_COMSTR', 'Building compilation database $TARGET')
components_by_suffix = itertools.chain(
- itertools.product(CSuffixes, [
+ itertools.product(_CSuffixes, [
(static_obj, SCons.Defaults.StaticObjectEmitter, '$CCCOM'),
(shared_obj, SCons.Defaults.SharedObjectEmitter, '$SHCCCOM'),
]),
- itertools.product(CXXSuffixes, [
+ itertools.product(_CXXSuffixes, [
(static_obj, SCons.Defaults.StaticObjectEmitter, '$CXXCOM'),
(shared_obj, SCons.Defaults.SharedObjectEmitter, '$SHCXXCOM'),
]),
@@ -123,13 +128,14 @@ def generate(env, **kwargs):
suffix = entry[0]
builder, base_emitter, command = entry[1]
- builder.add_emitter(
- suffix, SCons.Builder.ListEmitter(
- [
- makeEmitCompilationDbEntry(command),
- base_emitter,
- ]
- ))
+ # Assumes a dictionary emitter
+ emitter = builder.emitter[suffix]
+ builder.emitter[suffix] = SCons.Builder.ListEmitter(
+ [
+ emitter,
+ makeEmitCompilationDbEntry(command),
+ ]
+ )
env['BUILDERS']['__COMPILATIONDB_Entry'] = SCons.Builder.Builder(
action=SCons.Action.Action(CompilationDbEntryAction, None),
diff --git a/site_scons/site_tools/split_dwarf.py b/site_scons/site_tools/split_dwarf.py
new file mode 100644
index 00000000000..95130c9e9a3
--- /dev/null
+++ b/site_scons/site_tools/split_dwarf.py
@@ -0,0 +1,65 @@
+# 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
+
+_splitDwarfFlag = '-gsplit-dwarf'
+
+# Cribbed from Tool/cc.py and Tool/c++.py. It would be better if
+# we could obtain this from SCons.
+_CSuffixes = ['.c']
+if not SCons.Util.case_sensitive_suffixes('.c', '.C'):
+ _CSuffixes.append('.C')
+
+_CXXSuffixes = ['.cpp', '.cc', '.cxx', '.c++', '.C++']
+if SCons.Util.case_sensitive_suffixes('.c', '.C'):
+ _CXXSuffixes.append('.C')
+
+def _dwo_emitter(target, source, env):
+ new_targets = []
+ for t in target:
+ base, ext = SCons.Util.splitext(str(t))
+ if not any(ext == env[osuffix] for osuffix in ['OBJSUFFIX', 'SHOBJSUFFIX']):
+ continue
+ # TODO: Move 'dwo' into DWOSUFFIX so it can be customized? For
+ # now, GCC doesn't let you control the output filename, so it
+ # doesn't matter.
+ dwotarget = (t.builder.target_factory or env.File)(base + ".dwo")
+ new_targets.append(dwotarget)
+ targets = target + new_targets
+ return (targets, source)
+
+def generate(env):
+ suffixes = []
+ if _splitDwarfFlag in env['CCFLAGS']:
+ suffixes = _CSuffixes + _CXXSuffixes
+ else:
+ if _splitDwarfFlag in env['CFLAGS']:
+ suffixes.extend(_CSuffixes)
+ if _splitDwarfFlag in env['CXXFLAGS']:
+ suffixes.extend(_CXXSuffixes)
+
+ for object_builder in SCons.Tool.createObjBuilders(env):
+ emitterdict = object_builder.builder.emitter
+ for suffix in emitterdict.iterkeys():
+ if not suffix in suffixes:
+ continue
+ base = emitterdict[suffix]
+ emitterdict[suffix] = SCons.Builder.ListEmitter([
+ base,
+ _dwo_emitter,
+ ])
+
+def exists(env):
+ return any(_splitDwarfFlag in env[f] for f in ['CCFLAGS', 'CFLAGS', 'CXXFLAGS'])