From 8ffb0bb3d881a9da3f9c5b731e7cf38532cb8ba6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9B=D0=B5=D0=BE=D0=BD=D0=B8=D0=B4=20=D0=AE=D1=80=D1=8C?= =?UTF-8?q?=D0=B5=D0=B2=20=28Leonid=20Yuriev=29?= Date: Thu, 10 Nov 2022 15:09:42 +0300 Subject: [PATCH] =?UTF-8?q?mdbx-cmake:=20=D0=BF=D0=BE=D0=B4=D0=B4=D0=B5?= =?UTF-8?q?=D1=80=D0=B6=D0=BA=D0=B0=20=D0=B2=D1=81=D0=B5=D1=85=20=D0=BE?= =?UTF-8?q?=D1=81=D0=BD=D0=BE=D0=B2=D0=BD=D1=8B=D1=85=20=D0=BE=D0=BF=D1=86?= =?UTF-8?q?=D0=B8=D0=B9=20=D0=BF=D1=80=D0=B8=20=D1=81=D0=B1=D0=BE=D1=80?= =?UTF-8?q?=D0=BA=D0=B5=20=D0=BF=D0=BE=D1=81=D1=80=D0=B5=D0=B4=D1=81=D1=82?= =?UTF-8?q?=D0=B2=D0=BE=D0=BC=20CMake.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CMakeLists.txt | 10 ++++++++++ src/config.h.in | 5 +++++ src/options.h | 2 +- 3 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 04856291..a5167d62 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -519,6 +519,16 @@ add_mdbx_option(MDBX_TRUST_RTC "Does a system have battery-backed Real-Time Cloc mark_as_advanced(MDBX_TRUST_RTC) option(MDBX_FORCE_ASSERTIONS "Force enable assertion checking" OFF) option(MDBX_DISABLE_VALIDATION "Disable some checks to reduce an overhead and detection probability of database corruption to a values closer to the LMDB" OFF) +option(MDBX_ENABLE_REFUND "Zerocost auto-compactification during write-transactions" ON) +option(MDBX_ENABLE_MADVISE "Using POSIX' madvise() and/or similar hints" ON) +if (CMAKE_TARGET_BITNESS GREATER 32) + set(MDBX_BIGFOOT_DEFAULT ON) +else() + set(MDBX_BIGFOOT_DEFAULT OFF) +endif() +option(MDBX_ENABLE_BIGFOOT "Chunking long list of retired pages during huge transactions commit to avoid use sequences of pages" ${MDBX_BIGFOOT_DEFAULT}) +option(MDBX_ENABLE_PGOP_STAT "Gathering statistics for page operations" ON) +option(MDBX_ENABLE_PROFGC "Profiling of GC search and updates" OFF) if(NOT MDBX_AMALGAMATED_SOURCE) if(CMAKE_CONFIGURATION_TYPES OR CMAKE_BUILD_TYPE_UPPERCASE STREQUAL "DEBUG") diff --git a/src/config.h.in b/src/config.h.in index 786a8c0b..05c561b1 100644 --- a/src/config.h.in +++ b/src/config.h.in @@ -28,6 +28,11 @@ #endif #cmakedefine01 MDBX_DISABLE_VALIDATION #cmakedefine01 MDBX_AVOID_MSYNC +#cmakedefine01 MDBX_ENABLE_REFUND +#cmakedefine01 MDBX_ENABLE_MADVISE +#cmakedefine01 MDBX_ENABLE_BIGFOOT +#cmakedefine01 MDBX_ENABLE_PGOP_STAT +#cmakedefine01 MDBX_ENABLE_PROFGC /* Windows */ #cmakedefine01 MDBX_WITHOUT_MSVC_CRT diff --git a/src/options.h b/src/options.h index 11df6967..2ab0dce6 100644 --- a/src/options.h +++ b/src/options.h @@ -99,7 +99,7 @@ #error MDBX_ENABLE_BIGFOOT must be defined as 0 or 1 #endif /* MDBX_ENABLE_BIGFOOT */ -/** Controls use of POSIX madvise() hints and friends. */ +/** Controls using of POSIX' madvise() and/or similar hints. */ #ifndef MDBX_ENABLE_MADVISE #define MDBX_ENABLE_MADVISE 1 #elif !(MDBX_ENABLE_MADVISE == 0 || MDBX_ENABLE_MADVISE == 1)