summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2016-02-11 14:41:57 -0500
committerMark Benvenuto <mark.benvenuto@mongodb.com>2016-02-11 14:42:16 -0500
commitdf981d0766beb3e1c423f72eba1831ec510bd457 (patch)
treea0056dc3713d646c704e356c559a8e707a4dc82e /SConstruct
parent4bbd6f51d9dc2e4de0a7d0824cc76bc8a514e156 (diff)
downloadmongo-df981d0766beb3e1c423f72eba1831ec510bd457.tar.gz
SERVER-17563 GPerfTools does not build on PPC64LE (Power8) platform
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 9c59f487b06..0e980fd51cf 100644
--- a/SConstruct
+++ b/SConstruct
@@ -1032,7 +1032,7 @@ env['TARGET_OS_FAMILY'] = 'posix' if env.TargetOSIs('posix') else env.GetTargetO
# option as a new variable in the environment.
if get_option('allocator') == "auto":
if env.TargetOSIs('windows') or \
- (env.TargetOSIs('linux') and (env['TARGET_ARCH'] in ['i386', 'x86_64'])):
+ (env.TargetOSIs('linux') and (env['TARGET_ARCH'] in ['i386', 'x86_64', 'ppc64le'])):
env['MONGO_ALLOCATOR'] = "tcmalloc"
else:
env['MONGO_ALLOCATOR'] = "system"