diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-06-30 09:57:51 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-06-30 10:15:22 +0300 |
commit | 623b46c589624cd1ccf05c4271c6aeeb376416f9 (patch) | |
tree | 0c91d157bdda6d34e483a5aac4376fbccc68c0cd | |
parent | 4b67b38a79dad7d356013e9cfe735d813970257e (diff) | |
download | guix-623b46c589624cd1ccf05c4271c6aeeb376416f9.tar.gz |
gnu: wiredtiger: Enable building on more platforms.
* gnu/packages/databases.scm (wiredtiger)[supported-systems]: Mark all 64bit platforms as supported except riscv64-linux. Change-Id: I0e74347729db5f6c5d26fc88f5a60b5ab45d4381
-rw-r--r-- | gnu/packages/databases.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index d9926701f5..e2201564f2 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -2845,7 +2845,7 @@ more efficient access and storage of column subsets) and log-structured merge trees (LSM), for sustained throughput under random insert workloads.") (license license:gpl3) ; or GPL-2 ;; configure.ac: WiredTiger requires a 64-bit build. - (supported-systems '("x86_64-linux" "mips64el-linux" "aarch64-linux")))) + (supported-systems (delete "riscv64-linux" %64bit-supported-systems)))) (define-public wiredtiger-3 (package |