summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2019-06-05 14:20:49 -0400
committerAndrew Morrow <acm@mongodb.com>2019-06-05 16:46:03 -0400
commit661588a68066dcef3f7f3fea0af37ecebb23594a (patch)
treeb1b640dcaef2148aa71cabb91411bdc51a1e3bf6 /src
parente5a5aaa945e3e25c086ec82d71a7d9e38855a299 (diff)
downloadmongo-661588a68066dcef3f7f3fea0af37ecebb23594a.tar.gz
SERVER-41548 Restrict dsymutil to single threaded mode
Diffstat (limited to 'src')
-rw-r--r--src/mongo/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/SConscript b/src/mongo/SConscript
index 735952f429b..ce0fc27a358 100644
--- a/src/mongo/SConscript
+++ b/src/mongo/SConscript
@@ -686,7 +686,7 @@ def installBinary( e, name ):
debug_sym_name += '.debug'
elif e.TargetOSIs('darwin'):
debug_sym_name += '.dSYM'
- debug_sym_cmd = 'dsymutil -o ${TARGET} ${SOURCE}'
+ debug_sym_cmd = 'dsymutil -num-threads=1 -o ${TARGET} ${SOURCE}'
elif e.ToolchainIs('msvc'):
debug_sym_name += '.pdb'
distBinaries.append(debug_sym_name)