summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2015-12-11 16:55:10 -0500
committerJason Carey <jcarey@argv.me>2016-03-07 19:10:03 -0500
commit37967f621f723e7b447a2205af5154b814b8b8bf (patch)
tree10ad3e3ba664d47bba89cb2079c0c68854c9b108 /SConstruct
parente2ee9ffcf9f5a94fad76802e28cc978718bb7a30 (diff)
downloadmongo-37967f621f723e7b447a2205af5154b814b8b8bf.tar.gz
SERVER-21834: use ppc64 instead of PowerPC as the platform
(cherry picked from commit e090ea73cc39a6ce9a52b565cb7f39646614bdd7)
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct12
1 files changed, 6 insertions, 6 deletions
diff --git a/SConstruct b/SConstruct
index 152f1e3c680..2fa615c0720 100644
--- a/SConstruct
+++ b/SConstruct
@@ -885,12 +885,12 @@ def CheckForToolchain(context, toolchain, lang_name, compiler_var, source_suffix
# NOTE: Remember to add a trailing comma to form any required one
# element tuples, or your configure checks will fail in strange ways.
processor_macros = {
- 'x86_64': ('__x86_64', '_M_AMD64'),
- 'i386': ('__i386', '_M_IX86'),
- 'sparc': ('__sparc',),
- 'PowerPC': ('__powerpc__', '__PPC'),
- 'arm' : ('__arm__',),
- 'arm64' : ('__arm64__', '__aarch64__'),
+ 'arm' : ('__arm__',),
+ 'arm64' : ('__arm64__', '__aarch64__'),
+ 'i386' : ('__i386', '_M_IX86'),
+ 'ppc64' : ('__powerpc64__',),
+ 'sparc' : ('__sparc',),
+ 'x86_64' : ('__x86_64', '_M_AMD64'),
}
def CheckForProcessor(context, which_arch):