Update Rocksdb to v8.6.7. Convert setting of CMake variable PORTABLE to use 0/1 instead of OFF/ON. Reenable fail on warnings.
This commit is contained in:
parent
f30ec11622
commit
ad0340527c
2 changed files with 3 additions and 8 deletions
|
|
@ -491,18 +491,13 @@ set(WITH_TOOLS
|
||||||
CACHE BOOL "" FORCE)
|
CACHE BOOL "" FORCE)
|
||||||
if(ENABLE_AVX2)
|
if(ENABLE_AVX2)
|
||||||
set(PORTABLE
|
set(PORTABLE
|
||||||
OFF
|
0
|
||||||
CACHE BOOL "" FORCE)
|
CACHE BOOL "" FORCE)
|
||||||
else()
|
else()
|
||||||
set(PORTABLE
|
set(PORTABLE
|
||||||
ON
|
1
|
||||||
CACHE BOOL "" FORCE)
|
CACHE BOOL "" FORCE)
|
||||||
endif()
|
endif()
|
||||||
set(FAIL_ON_WARNINGS
|
|
||||||
OFF
|
|
||||||
CACHE BOOL "") # Ignore unreachable code warning in merging_iterator.cc
|
|
||||||
# RocksDB v7.8.3 on Windows
|
|
||||||
# https://github.com/facebook/rocksdb/issues/11072
|
|
||||||
add_subdirectory(submodules/rocksdb EXCLUDE_FROM_ALL)
|
add_subdirectory(submodules/rocksdb EXCLUDE_FROM_ALL)
|
||||||
|
|
||||||
include_directories(cpptoml/include)
|
include_directories(cpptoml/include)
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Subproject commit bf2c335184de16a3cc1787fa97ef9f22f7114238
|
Subproject commit cb7a5e02edeb883193eb5b4901d5943f58e9add9
|
||||||
Loading…
Add table
Add a link
Reference in a new issue