mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-10 10:22:00 +01:00
18 lines
661 B
Diff
18 lines
661 B
Diff
From: Jakub Jirutka <jakub@jirutka.cz>
|
|
Date: Tue, 18 Nov 2025 18:18:40 +0100
|
|
Subject: [PATCH] Don't require specific simdjson version
|
|
|
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index 565035b..b5fd160 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -39,7 +39,7 @@ if(ADA_TESTING OR ADA_BENCHMARKS OR ADA_TOOLS)
|
|
endif()
|
|
# We use simdjson in both the benchmarks and tests
|
|
if(ADA_TESTING OR ADA_BENCHMARKS)
|
|
- CPMAddPackage("gh:simdjson/simdjson@3.10.1")
|
|
+ CPMAddPackage("gh:simdjson/simdjson")
|
|
endif()
|
|
# We use Google Benchmark, but it does not build under several 32-bit systems.
|
|
if(ADA_BENCHMARKS AND (CMAKE_SIZEOF_VOID_P EQUAL 8))
|