summaryrefslogtreecommitdiff
path: root/src/third_party
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2015-08-12 14:20:44 -0400
committerAndrew Morrow <acm@mongodb.com>2015-08-24 09:36:31 -0400
commit01fff117c028cb820755ba8a7a392ba4c51a0ecc (patch)
treeba614e67fb64ad51afe5426ea5b91d28bb003218 /src/third_party
parentdd15f9c211f5bc40b6fa8a7cd44350d3aeb87d89 (diff)
downloadmongo-01fff117c028cb820755ba8a7a392ba4c51a0ecc.tar.gz
SERVER-9666 Tag cyclic or incomplete libraries, add more missing edges
Diffstat (limited to 'src/third_party')
-rw-r--r--src/third_party/mozjs-38/SConscript9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/third_party/mozjs-38/SConscript b/src/third_party/mozjs-38/SConscript
index c94ee2fec48..32509fa4a2f 100644
--- a/src/third_party/mozjs-38/SConscript
+++ b/src/third_party/mozjs-38/SConscript
@@ -92,4 +92,11 @@ sources.extend(Glob('platform/' + env["TARGET_ARCH"] + "/" + env["TARGET_OS"] +
# All of those unified sources come in from configure. The files don't
# actually build individually anymore.
-env.Library( "mozjs", sources )
+env.Library(
+ target="mozjs",
+ source=sources,
+ LIBDEPS_TAGS=[
+ # Depends on allocation symbols defined elsewhere
+ 'incomplete'
+ ],
+)