mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Disable LZSSE on AArch64
This commit is contained in:
parent
4290b48a61
commit
ad9481b1bb
@ -1,4 +1,9 @@
|
||||
option(USE_LZSSE "Enable LZSSE experimental compression library" ${ENABLE_LIBRARIES})
|
||||
set (DEFAULT_USE_LZSSE 0)
|
||||
if (ENABLE_LIBRARIES AND ARCH_AMD64)
|
||||
set (DEFAULT_USE_LZSSE 1)
|
||||
endif()
|
||||
|
||||
option(USE_LZSSE "Enable LZSSE experimental compression library" ${DEFAULT_USE_LZSSE})
|
||||
|
||||
if (NOT USE_LZSSE)
|
||||
return()
|
||||
|
Loading…
Reference in New Issue
Block a user