mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 16:42:05 +00:00
ppc64le: Disable incompatible libraries (platform specific typically)
This commit is contained in:
parent
956dba1d9c
commit
0692459f9f
@ -1,4 +1,8 @@
|
|||||||
option (ENABLE_BASE64 "Enable base64" ${ENABLE_LIBRARIES})
|
if(NOT ARCH_PPC64LE)
|
||||||
|
option (ENABLE_BASE64 "Enable base64" ${ENABLE_LIBRARIES})
|
||||||
|
elseif(ENABLE_BASE64)
|
||||||
|
message (${RECONFIGURE_MESSAGE_LEVEL} "base64 library is not supported on PowerPC")
|
||||||
|
endif()
|
||||||
|
|
||||||
if (NOT ENABLE_BASE64)
|
if (NOT ENABLE_BASE64)
|
||||||
return()
|
return()
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
if(NOT ARCH_ARM AND NOT OS_FREEBSD AND NOT OS_DARWIN)
|
if(NOT ARCH_ARM AND NOT OS_FREEBSD AND NOT OS_DARWIN AND NOT ARCH_PPC64LE)
|
||||||
option(ENABLE_FASTOPS "Enable fast vectorized mathematical functions library by Mikhail Parakhin" ${ENABLE_LIBRARIES})
|
option(ENABLE_FASTOPS "Enable fast vectorized mathematical functions library by Mikhail Parakhin" ${ENABLE_LIBRARIES})
|
||||||
elseif(ENABLE_FASTOPS)
|
elseif(ENABLE_FASTOPS)
|
||||||
message (${RECONFIGURE_MESSAGE_LEVEL} "Fastops library is not supported on ARM, FreeBSD and Darwin")
|
message (${RECONFIGURE_MESSAGE_LEVEL} "Fastops library is not supported on ARM, FreeBSD and Darwin")
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
if(NOT ARCH_ARM AND NOT OS_FREEBSD AND NOT APPLE AND USE_PROTOBUF)
|
if(NOT ARCH_ARM AND NOT OS_FREEBSD AND NOT APPLE AND USE_PROTOBUF AND NOT ARCH_PPC64LE)
|
||||||
option(ENABLE_HDFS "Enable HDFS" ${ENABLE_LIBRARIES})
|
option(ENABLE_HDFS "Enable HDFS" ${ENABLE_LIBRARIES})
|
||||||
elseif(ENABLE_HDFS OR USE_INTERNAL_HDFS3_LIBRARY)
|
elseif(ENABLE_HDFS OR USE_INTERNAL_HDFS3_LIBRARY)
|
||||||
message (${RECONFIGURE_MESSAGE_LEVEL} "Cannot use HDFS3 with current configuration")
|
message (${RECONFIGURE_MESSAGE_LEVEL} "Cannot use HDFS3 with current configuration")
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
if (NOT ARCH_ARM)
|
if (NOT ARCH_ARM AND NOT ARCH_PPC64LE)
|
||||||
option (ENABLE_CPUID "Enable libcpuid library (only internal)" ${ENABLE_LIBRARIES})
|
option (ENABLE_CPUID "Enable libcpuid library (only internal)" ${ENABLE_LIBRARIES})
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user