summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-dbs/rocksdb/files
Commit message (Collapse)AuthorAgeFilesLines
* rocksdb: fix build with gcc-13mark.yang2025-04-072-0/+106
| | | | | | | | * From gcc 13, cstdint header must be explicitly included for uint_X data types. * See also: https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes Signed-off-by: mark.yang <mark.yang@lge.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rocksdb: Add ptest supportMingli Yu2024-09-292-0/+54
| | | | | | | | | | | | # ./run-ptest PASS: agg_merge_test PASS: cache_test PASS: db_basic_test PASS: env_basic_test PASS: testutil_test Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rocksdb: Add an option to set static libraryNikhil R2024-08-101-0/+71
| | | | | | | | | | | | | Modify the CMakeLists.txt to add an Option for STATIC target import, as available for shared library. Link: https://github.com/facebook/rocksdb/pull/12890 Configure static library default to switched off as shared libraries are sufficient in most cases. Signed-off-by: Bhabu Bindu <bindu.bhabu@kpit.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rocksdb: fix build error for multilibYi Zhao2024-04-071-0/+39
| | | | | | | | | | | | Fix declaration scope of LE_LOAD32 in crc32c when building lib32-rocksdb: util/crc32c.cc: In function 'void rocksdb::crc32c::DefaultCRC32(uint64_t*, const uint8_t**)': util/crc32c.cc:267:53: error: 'LE_LOAD32' was not declared in this scope 267 | *l = _mm_crc32_u32(static_cast<unsigned int>(*l), LE_LOAD32(*p)); | ^~~~~~~~~ Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rocksdb: upgrade 7.9.2 -> 9.0.0Yi Zhao2024-03-219-110/+95
| | | | | | | | | | | ChangeLog: https://github.com/facebook/rocksdb/releases/tag/v9.0.0 * Refresh patches. * Drop backport patch. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* *.patch: add Upstream-Status to all patchesMartin Jansa2023-06-214-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | There is new patch-status QA check in oe-core: https://git.openembedded.org/openembedded-core/commit/?id=76a685bfcf927593eac67157762a53259089ea8a This is temporary work around just to hide _many_ warnings from optional patch-status (if you add it to WARN_QA). This just added Upstream-Status: Pending everywhere without actually investigating what's the proper status. This is just to hide current QA warnings and to catch new .patch files being added without Upstream-Status, but the number of Pending patches is now terrible: 5 (26%) meta-xfce 6 (50%) meta-perl 15 (42%) meta-webserver 21 (36%) meta-gnome 25 (57%) meta-filesystems 26 (43%) meta-initramfs 45 (45%) meta-python 47 (55%) meta-multimedia 312 (63%) meta-networking 756 (61%) meta-oe Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* 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>