From d7f9ade853fff4c33d0f2a4e5229142163b62979 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Fri, 17 Jul 2026 13:34:30 +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 e2d010be50..23d5f6858f 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" MANIFOLD_VERSION = "3.2.1" QT6_VERSION = os.getenv("QT6_VERSION", "6.8.3")