summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-dbs/rocksdb/files
Commit message (Collapse)AuthorAgeFilesLines
* rocksdb: Fix build with clang compilerKhem Raj2023-01-261-0/+33
| | | | | | Need to drop using -msse4.2 -mpclmul Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rocksdb: Upgrade to 7.9.2Khem Raj2023-01-254-4/+4
| | | | | | Refresh patches Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rocksdb: Fix build with gcc13Khem Raj2023-01-251-0/+70
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rocksdb: Upgrade to 7.5.3 releaseKhem Raj2022-09-118-130/+11
| | | | | | Drop upstreamed patches and forward port existing ones Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rocksdb: Fix build with gcc on rv32 and mipsKhem Raj2021-06-181-0/+59
| | | | | | | | __sync_fetch_and_add (64bit) are not impelemented in gcc and clang smartly converts them to __atomic_fetch_add() APIs, so do that manually when using gcc for compiler Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rocksdb: Implement timer for armv6+Khem Raj2021-06-181-0/+26
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rocksdb: Implement timer for mipsKhem Raj2021-06-181-0/+19
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rocksdb: Fix build with ppc64/muslKhem Raj2021-06-181-0/+28
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rocksdb: Implement toku_time_now function for rv32/rv64Khem Raj2021-06-181-0/+44
| | | | | | | | | Fixes build utilities/transactions/lock/range/range_tree/lib/locktree/../portability/toku_time.h:137:2: error: #error No timer implementation for this platform 137 | #error No timer implementation for this platform | ^~~~~ Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rocksdb: Upgrade to 6.20.3Khem Raj2021-06-184-21/+26
| | | | | | | Refresh patches Add a fix to build with clang on musl Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rocksdb: Update to 6.12.7Khem Raj2020-11-151-0/+47
| | | | | | Add a patch to fix build on riscv32 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rocksdb: 6.6.4 -> 6.11.4Pascal Bach2020-10-133-39/+58
| | | | | | | | | - Thread patch was fixed upstream - CMake atomic patch is still pending but was refreshed - Additional patch for proper bz2 support in CMake added. Signed-off-by: Pascal Bach <pascal.bach@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rocksdb: Fix build on platforms not having all atomic intrinsicsKhem Raj2020-03-181-0/+115
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rocksdb: upgrade 6.5.2 -> 6.6.4Wang Mingyu2020-03-171-36/+0
| | | | | | | | 0001-Fix-build-breakage-from-lock_guard-error-6161.patch removed since it is included in 6.6.4 Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rocksdb: Fix compile error for DEBUG_BUILDRobert Yang2020-01-091-0/+31
| | | | | | | | Fixed do_compile error when DEBUG_BUILD = "1": db/write_thread.cc:183:14: error: 'state' may be used uninitialized in this function [-Werror=maybe-uninitialized] Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rocksdb: Upgrade to 6.5.2Khem Raj2019-12-295-201/+36
| | | | | | | Backport an upstream patch to fix build Delete patches which are either upstreamed or not required Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rocksdb: 5.18.3 -> 6.0.2Pascal Bach2019-06-152-0/+109
| | | | | | | | | | | | | | | Also add support for gflags as these are enabled by default and recipes are available in meta-oe. They can still be disabled via PACKAGECONFIG. zstd is also added as an PACKAGECONFIG but currently the zstd recipe is not in meta-oe so it stays disabled for the moment. This also includes a patch that fixes GCC9 compatibility, it's currently submitted upstream but not yet accepted due to style issues. Signed-off-by: Pascal Bach <pascal.bach@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* utilities: Fix build failure with -Werror=maybe-uninitializedHe Zhe2019-03-191-0/+35
| | | | | | | | | | | Initialize magic_number to zero to avoid such failure. utilities/blob_db/blob_log_format.cc:91:3: error: 'magic_number' may be used uninitialized in this function [-Werror=maybe-uninitialized] if (magic_number != kMagicNumber) { ^~ Signed-off-by: He Zhe <zhe.he@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rocksdb: Fix build with clangKhem Raj2019-02-131-0/+57
Signed-off-by: Khem Raj <raj.khem@gmail.com>