mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 01:54:55 +00:00
36 lines
1.0 KiB
CMake
36 lines
1.0 KiB
CMake
option (ENABLE_CPUID "Enable libcpuid library (only internal)" ${ENABLE_LIBRARIES})
|
|
|
|
if (ARCH_ARM)
|
|
set (ENABLE_CPUID 0)
|
|
endif ()
|
|
|
|
if (ENABLE_CPUID)
|
|
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")
|
|
else ()
|
|
add_library (cpuid INTERFACE)
|
|
|
|
target_compile_definitions (cpuid INTERFACE USE_CPUID=0)
|
|
endif ()
|