[Support/BLAKE3] Temporarily disable building neon file to get builders back to green

This commit is contained in:
Argyrios Kyrtzidis 2022-03-24 11:40:28 -07:00
parent d3e5b6f753
commit a9b70a8b7b
2 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ set(LLVM_BLAKE3_FILES
# version using C intrinsics. The assembly versions are generally
# preferred. They perform better, they perform more consistently across
# different compilers, and they build more quickly."
# FIXME: Figure out what is wrong with the builders when using the assembly files.
# FIXME: Figure out what is wrong with the builders when using the assembly files and neon.
if (FALSE)#CMAKE_SYSTEM_PROCESSOR MATCHES "^(x86_64|AMD64)$")
if (MSVC)
list(APPEND LLVM_BLAKE3_FILES
@ -37,7 +37,7 @@ if (FALSE)#CMAKE_SYSTEM_PROCESSOR MATCHES "^(x86_64|AMD64)$")
endif()
endif()
if (CMAKE_SYSTEM_PROCESSOR MATCHES "^(arm|aarch)")
if (FALSE)#CMAKE_SYSTEM_PROCESSOR MATCHES "^(arm|aarch)")
list(APPEND LLVM_BLAKE3_FILES
BLAKE3/blake3_neon.c
)

View File

@ -107,7 +107,7 @@ if (MSVC)
enable_language(ASM_MASM)
endif()
# FIXME: Figure out what is wrong with the builders when using the assembly files.
add_definitions(-DBLAKE3_NO_AVX512 -DBLAKE3_NO_AVX2 -DBLAKE3_NO_SSE41 -DBLAKE3_NO_SSE2)
add_definitions(-DBLAKE3_NO_AVX512 -DBLAKE3_NO_AVX2 -DBLAKE3_NO_SSE41 -DBLAKE3_NO_SSE2 -DBLAKE3_USE_NEON=0)
add_llvm_component_library(LLVMSupport