summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/SConstruct
diff options
context:
space:
mode:
authorMichael Cahill <michael.cahill@mongodb.com>2015-11-11 16:35:13 +1100
committerMichael Cahill <michael.cahill@mongodb.com>2015-11-11 16:35:13 +1100
commit76ef930d453d4de3ad24245eeb0043c94a0cf258 (patch)
tree58a2f77b0506ba040bb37e10a6c0704df0c0608a /src/third_party/wiredtiger/SConstruct
parent80dfa9ff4da8935ff294483e14ad5a6cdcd05985 (diff)
downloadmongo-76ef930d453d4de3ad24245eeb0043c94a0cf258.tar.gz
Import wiredtiger-wiredtiger-mongodb-3.2.0-rc2-44-gd9ec1ff.tar.gz from wiredtiger branch mongodb-3.2
Diffstat (limited to 'src/third_party/wiredtiger/SConstruct')
-rw-r--r--src/third_party/wiredtiger/SConstruct8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/third_party/wiredtiger/SConstruct b/src/third_party/wiredtiger/SConstruct
index 70ed6e0220b..6a2b0497d15 100644
--- a/src/third_party/wiredtiger/SConstruct
+++ b/src/third_party/wiredtiger/SConstruct
@@ -167,6 +167,7 @@ if useTcmalloc:
if conf.CheckCHeader('gperftools/tcmalloc.h'):
wtlibs.append("libtcmalloc_minimal")
conf.env.Append(CPPDEFINES=['HAVE_LIBTCMALLOC'])
+ conf.env.Append(CPPDEFINES=['HAVE_POSIX_MEMALIGN'])
else:
print 'tcmalloc.h must be installed!'
Exit(1)
@@ -406,8 +407,11 @@ Default(t)
t = env.Program("t_huge",
"test/huge/huge.c",
LIBS=[wtlib] + wtlibs)
-#env.Alias("check", env.SmokeTest(t))
-Default(t)
+
+#t = env.Program("t_recovery",
+# "test/recovery/recovery.c",
+# LIBS=[wtlib] + wtlibs)
+#Default(t)
t = env.Program("t_fops",
["test/fops/file.c",