summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorKeith Bostic <keith.bostic@mongodb.com>2016-08-24 20:58:36 -0400
committerMichael Cahill <michael.cahill@mongodb.com>2016-08-25 10:58:36 +1000
commit2ddc171b47690a42d6477cfc469f4fa62f885517 (patch)
tree67d324f9bf790cae360975a89bd984c2969a3fd5 /SConstruct
parent78fbc074082a47c96a619d766c335483c2c15556 (diff)
downloadmongo-2ddc171b47690a42d6477cfc469f4fa62f885517.tar.gz
WT-2695 Integrate s390x accelerated crc32c support (#2967)
* Add X86_HOST and ZSERIES_HOST to the Windows SConstruct file. * Add smoke-test for CRC functions. * Library for accelerated CRC-32 checksums on the IBM z13 processor Pulled from https://github.com/linux-on-ibm-z/crc32-s390x.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 2 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index b0ce771e9bd..55b3a2af4eb 100644
--- a/SConstruct
+++ b/SConstruct
@@ -248,6 +248,8 @@ condition_map = {
'POSIX_HOST' : env['PLATFORM'] == 'posix',
'POWERPC_HOST' : False,
'WINDOWS_HOST' : env['PLATFORM'] == 'win32',
+ 'X86_HOST' : True,
+ 'ZSERIES_HOST' : False,
}
def filtered_filelist(f):