From cb7c8ceba4bf7d6007a250799bfa35c129dd3e58 Mon Sep 17 00:00:00 2001 From: Henrik Edin Date: Wed, 9 Jan 2019 12:54:11 -0500 Subject: SERVER-37996 Add stock gperftools 2.7 as an allocator option activated with --allocator=tcmalloc-experimental --- src/third_party/SConscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/third_party/SConscript') diff --git a/src/third_party/SConscript b/src/third_party/SConscript index 4a7d44ebdfd..aa9785ce7d6 100644 --- a/src/third_party/SConscript +++ b/src/third_party/SConscript @@ -14,7 +14,7 @@ pcreSuffix = "-8.42" mozjsSuffix = '-45' yamlSuffix = '-0.6.2' icuSuffix = '-57.1' -gperftoolsSuffix = '-2.5' +gperftoolsSuffix = '-2.7' if env['MONGO_ALLOCATOR'] == "tcmalloc-experimental" else '-2.5' timelibSuffix = '-2018.01' tomcryptSuffix = '-1.18.2' benchmarkSuffix = '-1.4.1' @@ -324,7 +324,7 @@ if "tom" in env["MONGO_CRYPTO"]: ]) gperftoolsEnv = env -if (gperftoolsEnv['MONGO_ALLOCATOR'] == "tcmalloc"): +if (gperftoolsEnv['MONGO_ALLOCATOR'] in ["tcmalloc", "tcmalloc-experimental"]): if use_system_version_of_library("tcmalloc"): gperftoolsEnv = env.Clone( SYSLIBDEPS=[ -- cgit v1.2.1