From e01979187a4439a21c0fa57198286886562fb62f Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Wed, 15 Jul 2026 18:41:54 +0500 Subject: [PATCH] build-all: fix issue building rocksdb on gcc 15 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Example error: `error: ‘uint64_t’ has not been declared uint64_t blob_file_number, uint64_t total_blob_count,` See https://github.com/facebook/rocksdb/issues/13365 --- nix/build-all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/build-all.py b/nix/build-all.py index 0e7d50b084..7dba287a48 100644 --- a/nix/build-all.py +++ b/nix/build-all.py @@ -155,7 +155,7 @@ MPFR_VERSION = "3.1.6" # latest is 4.1.0 CGAL_VERSION = "v5.6.3" USD_VERSION = "23.05" TBB_VERSION = "2021.9.0" -ROCKSDB_VERSION = "9.11.2" +ROCKSDB_VERSION = "10.4.2" ZSTD_VERSION = "1.5.7" # binaries cp = "cp"