608d754ceb
This is stable bugfix release of libmdbx. So it is reasonable to backport this patch to all applicable releases/branches of buildroot. The project as well as all its forks were removed from Github (see e.g. https://blog.desdelinux.net/en/libmdbx-0-11-7-arrives-with-project-migration-to-gitflic-bug-fixes-and-more/), therefore it moved to gitflic.ru. There is also a website with the documentation and the downloads. Release notes for v0.11.7 https://gitflic.ru/project/erthink/libmdbx/release/90ec9985-cd60-4d9a-8c98-8417506fd26d The complete ChangeLog: https://gitflic.ru/project/erthink/libmdbx/blob?file=ChangeLog.md Signed-off-by: Леонид Юрьев (Leonid Yuriev) <leo@yuriev.ru> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
46 lines
1.3 KiB
Plaintext
46 lines
1.3 KiB
Plaintext
config BR2_PACKAGE_LIBMDBX
|
|
bool "libmdbx"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_4
|
|
help
|
|
One of the fastest compact key-value ACID database
|
|
without WAL. libmdbx has a specific set of properties
|
|
and capabilities, focused on creating unique lightweight
|
|
solutions.
|
|
|
|
libmdbx surpasses the legendary LMDB in terms of
|
|
reliability, features and performance.
|
|
|
|
https://libmdbx.website.yandexcloud.net/
|
|
|
|
if BR2_PACKAGE_LIBMDBX
|
|
|
|
config BR2_PACKAGE_LIBMDBX_TOOLS
|
|
bool "install tools"
|
|
help
|
|
Install libmdbx tools for checking, dump, restore
|
|
and show statistics of databases.
|
|
|
|
config BR2_PACKAGE_LIBMDBX_CXX
|
|
bool "C++ API"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
|
|
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735
|
|
help
|
|
Enable modern C++11/14/17/20 API for libmdbx.
|
|
|
|
comment "libmdbx C++ support needs a toolchain w/ C++11, gcc >= 4.8 w/o bug#64735"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 || \
|
|
BR2_TOOLCHAIN_HAS_GCC_BUG_64735
|
|
|
|
endif
|
|
|
|
comment "libmdbx needs MMU, a toolchain w/ threads, gcc >= 4.4 w/ 4-byte atomics"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_TOOLCHAIN_HAS_SYNC_4 || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_4
|