mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
39 lines
1.1 KiB
CMake
39 lines
1.1 KiB
CMake
if(ARCH_AMD64)
|
|
option (ENABLE_CPUID "Enable libcpuid library (only internal)" ${ENABLE_LIBRARIES})
|
|
elseif(ENABLE_CPUID)
|
|
message (${RECONFIGURE_MESSAGE_LEVEL} "libcpuid is only supported on x86_64")
|
|
set (ENABLE_CPUID 0)
|
|
endif()
|
|
|
|
if (NOT ENABLE_CPUID)
|
|
add_library (cpuid INTERFACE)
|
|
|
|
target_compile_definitions (cpuid INTERFACE USE_CPUID=0)
|
|
|
|
return()
|
|
endif()
|
|
|
|
set (LIBRARY_DIR "${ClickHouse_SOURCE_DIR}/contrib/libcpuid")
|
|
|
|
set (SRCS
|
|
"${LIBRARY_DIR}/libcpuid/asm-bits.c"
|
|
"${LIBRARY_DIR}/libcpuid/cpuid_main.c"
|
|
"${LIBRARY_DIR}/libcpuid/libcpuid_util.c"
|
|
"${LIBRARY_DIR}/libcpuid/msrdriver.c"
|
|
"${LIBRARY_DIR}/libcpuid/rdmsr.c"
|
|
"${LIBRARY_DIR}/libcpuid/rdtsc.c"
|
|
"${LIBRARY_DIR}/libcpuid/recog_amd.c"
|
|
"${LIBRARY_DIR}/libcpuid/recog_intel.c"
|
|
)
|
|
|
|
add_library (cpuid ${SRCS})
|
|
|
|
target_include_directories (cpuid SYSTEM PUBLIC "${LIBRARY_DIR}")
|
|
target_compile_definitions (cpuid PUBLIC USE_CPUID=1)
|
|
target_compile_definitions (cpuid PRIVATE VERSION="v0.4.1")
|
|
if (COMPILER_CLANG)
|
|
target_compile_options (cpuid PRIVATE -Wno-reserved-id-macro)
|
|
endif ()
|
|
|
|
message (STATUS "Using cpuid")
|