diff options
author | Daniel Moody <daniel.moody@mongodb.com> | 2021-04-30 10:57:36 -0500 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-05-05 19:58:49 +0000 |
commit | 76eab0dfcc8f0d6ed77e64d9a656e8819db99cdd (patch) | |
tree | ec1170c63ef60db21dca8c8fab38f8f4e4f920cd /site_scons | |
parent | 5a36b11b00fd4665cf703f5e67c6efba582cf5ce (diff) | |
download | mongo-76eab0dfcc8f0d6ed77e64d9a656e8819db99cdd.tar.gz |
SERVER-56141 added in degree one libdeps analyzer and removed existence of shims from analyzer.
Diffstat (limited to 'site_scons')
-rw-r--r-- | site_scons/libdeps_next.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/site_scons/libdeps_next.py b/site_scons/libdeps_next.py index 194613d3e8a..402b3d265dd 100644 --- a/site_scons/libdeps_next.py +++ b/site_scons/libdeps_next.py @@ -964,7 +964,6 @@ def add_node_from(env, node): str(node.abspath), { NodeProps.bin_type.name: node.builder.get_name(env), - NodeProps.shim.name: getattr(node.attributes, "is_shim", False) })]) def add_edge_from(env, from_node, to_node, visibility, direct): @@ -1438,7 +1437,7 @@ def setup_environment(env, emitting_shared=False, debug='off', linting='on', san env['LIBDEPS_SYMBOL_DEP_FILES'] = symbol_deps env['LIBDEPS_GRAPH_FILE'] = env.File("${BUILD_DIR}/libdeps/libdeps.graphml") - env['LIBDEPS_GRAPH_SCHEMA_VERSION'] = 2 + env['LIBDEPS_GRAPH_SCHEMA_VERSION'] = 3 env["SYMBOLDEPSSUFFIX"] = '.symbol_deps' libdeps_graph = LibdepsGraph() |