summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2014-11-18 11:03:28 -0500
committerAndrew Morrow <acm@mongodb.com>2014-11-18 12:14:53 -0500
commit14ca6bfd67d5efb10fc21778246442c2f223dc1e (patch)
tree957bd0f82a3c018698e51fba940f3b5535c1eef7 /SConstruct
parentc3b92185d0a2f30e819aff44022e92230fb55b03 (diff)
downloadmongo-14ca6bfd67d5efb10fc21778246442c2f223dc1e.tar.gz
SERVER-16185 Use system allocator by default on OS X
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index dd28a8919a3..614488f8bbd 100644
--- a/SConstruct
+++ b/SConstruct
@@ -276,7 +276,7 @@ add_option( "pch" , "use precompiled headers to speed up the build (experimental
add_option( "distcc" , "use distcc for distributing builds" , 0 , False )
# debugging/profiling help
-if os.sys.platform.startswith("linux") or (os.sys.platform == "darwin"):
+if os.sys.platform.startswith("linux"):
defaultAllocator = 'tcmalloc'
else:
defaultAllocator = 'system'