[PATCH] D123187: [Support] [BLAKE3] Fix building for Cygwin

Martin Storsjö via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 6 12:55:34 PDT 2022


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG9edee89b91f5: [Support] [BLAKE3] Fix building for Cygwin (authored by mstorsjo).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D123187/new/

https://reviews.llvm.org/D123187

Files:
  llvm/lib/Support/BLAKE3/CMakeLists.txt


Index: llvm/lib/Support/BLAKE3/CMakeLists.txt
===================================================================
--- llvm/lib/Support/BLAKE3/CMakeLists.txt
+++ llvm/lib/Support/BLAKE3/CMakeLists.txt
@@ -43,7 +43,7 @@
       blake3_avx2_x86-64_windows_msvc.asm
       blake3_avx512_x86-64_windows_msvc.asm
     )
-  elseif(WIN32)
+  elseif(WIN32 OR CYGWIN)
     list(APPEND LLVM_BLAKE3_FILES
       blake3_sse2_x86-64_windows_gnu.S
       blake3_sse41_x86-64_windows_gnu.S


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D123187.420985.patch
Type: text/x-patch
Size: 473 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220406/1ea7fa57/attachment.bin>


More information about the llvm-commits mailing list