mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
33 lines
693 B
CMake
33 lines
693 B
CMake
enable_language (ASM)
|
|
|
|
if (COMPILER_CLANG)
|
|
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-builtin-requires-header")
|
|
endif ()
|
|
|
|
set (GLIBC_COMPATIBILITY_SOURCES
|
|
glibc-compatibility.c
|
|
musl/pipe2.c
|
|
musl/fallocate.c
|
|
musl/longjmp.s
|
|
musl/vasprintf.c
|
|
musl/lgamma.c
|
|
musl/posix_spawn.c
|
|
musl/futimens.c
|
|
musl/syscall.s
|
|
musl/syscall_ret.c
|
|
musl/sched_cpucount.c
|
|
musl/glob.c
|
|
musl/exp2f.c
|
|
musl/pwritev.c)
|
|
|
|
if (MAKE_STATIC_LIBRARIES)
|
|
set (GLIBC_COMPATIBILITY_SOURCES ${GLIBC_COMPATIBILITY_SOURCES}
|
|
libcxxabi/cxa_thread_atexit.cpp)
|
|
endif ()
|
|
|
|
add_library (glibc-compatibility ${GLIBC_COMPATIBILITY_SOURCES})
|
|
|
|
target_include_directories(glibc-compatibility PRIVATE libcxxabi)
|
|
|
|
add_subdirectory (tests)
|