From: Joel Rosdahl Date: Sun, 17 Mar 2024 11:41:06 +0000 (+0100) Subject: build: Use Windows BLAKE3 implementation on MSYS2 X-Git-Tag: v4.10~73 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0c422e12c5f501d00cb842feac86bd18b523117e;p=thirdparty%2Fccache.git build: Use Windows BLAKE3 implementation on MSYS2 Related to issue #1415. --- diff --git a/src/third_party/blake3/CMakeLists.txt b/src/third_party/blake3/CMakeLists.txt index 1e30eb3cf..d2da244ff 100644 --- a/src/third_party/blake3/CMakeLists.txt +++ b/src/third_party/blake3/CMakeLists.txt @@ -19,7 +19,7 @@ function(add_source_if_enabled feature msvc_flags others_flags intrinsic) if(MSVC) set(suffix "_x86-64_windows_msvc.asm") - elseif(WIN32) + elseif(WIN32 OR CYGWIN) set(suffix "_x86-64_windows_gnu.S") else() set(suffix "_x86-64_unix.S")