From df981d0766beb3e1c423f72eba1831ec510bd457 Mon Sep 17 00:00:00 2001 From: Mark Benvenuto Date: Thu, 11 Feb 2016 14:41:57 -0500 Subject: SERVER-17563 GPerfTools does not build on PPC64LE (Power8) platform --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'SConstruct') 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" -- cgit v1.2.1