Disable BLAKE3 for aarch64-darwin

This commit is contained in:
BoloniniD 2022-09-06 21:22:40 +03:00
parent 069fbdd7c5
commit d635c3f9be
2 changed files with 4 additions and 3 deletions

View File

@ -198,10 +198,9 @@ else ()
set(NO_WHOLE_ARCHIVE --no-whole-archive)
endif ()
set(ENABLE_BLAKE3 1)
if (OS_DARWIN AND ARCH_AARCH64)
set(ENABLE_BLAKE3 0)
set(USE_BLAKE3 0)
endif()
option(ENABLE_CURL_BUILD "Enable curl, azure, sentry build on by default except MacOS." ON)

View File

@ -93,7 +93,9 @@ add_contrib (grpc-cmake grpc)
add_contrib (msgpack-c-cmake msgpack-c)
if (ENABLE_RUST)
add_contrib (BLAKE3)
if (ENABLE_BLAKE3)
add_contrib (BLAKE3)
endif()
endif()
if (ENABLE_FUZZING)