1
0
Fork 0

Make rocksdb portable on windows by default (#2972)

This commit is contained in:
m0ppers 2017-08-08 10:22:27 +02:00 committed by Frank Celler
parent 27b1ff52f0
commit 6c3bc05419
2 changed files with 5 additions and 0 deletions

View File

@ -26,6 +26,10 @@ endif ()
# snappy settings
#set(SNAPPY_HOME ${CMAKE_SOURCE_DIR}/3rdParty/snappy/google-snappy-d53de18/)
if (WIN32)
option(PORTABLE_ROCKSDB "enable portable rocksdb build (disabling might yield better performance but break portability)" On)
set(PORTABLE ${PORTABLE_ROCKSDB})
endif ()
#if (WIN32)
# set(SNAPPY 1 CACHE BOOL "enable snappy")
# set(SNAPPY_INCLUDE ${SNAPPY_HOME};${CMAKE_BINARY_DIR}/3rdParty/snappy/google-snappy-d53de18/)

View File

@ -86,6 +86,7 @@ devel
* option "--rocksdb.compaction-read-ahead-size" now defaults to 2MB
* change windows build so that rocksdb doesn't enforce AVX optimizations by default
v3.2.0 (2017-07-20)
-------------------