2019-03-04 17:47:31 +00:00
|
|
|
set(CLICKHOUSE_SERVER_SOURCES
|
2020-05-27 17:52:52 +00:00
|
|
|
MetricsTransmitter.cpp
|
|
|
|
Server.cpp
|
2019-11-02 10:20:46 +00:00
|
|
|
)
|
2019-07-09 14:59:52 +00:00
|
|
|
|
2020-05-08 14:11:19 +00:00
|
|
|
set (CLICKHOUSE_SERVER_LINK
|
|
|
|
PRIVATE
|
|
|
|
clickhouse_aggregate_functions
|
|
|
|
clickhouse_common_config
|
|
|
|
clickhouse_common_io
|
|
|
|
clickhouse_common_zookeeper
|
|
|
|
clickhouse_dictionaries
|
|
|
|
clickhouse_functions
|
|
|
|
clickhouse_parsers
|
|
|
|
clickhouse_storages_system
|
|
|
|
clickhouse_table_functions
|
|
|
|
string_utils
|
|
|
|
|
|
|
|
PUBLIC
|
|
|
|
daemon
|
|
|
|
)
|
2018-11-21 19:20:27 +00:00
|
|
|
|
2019-03-04 17:47:31 +00:00
|
|
|
clickhouse_program_add(server)
|
2018-06-05 20:09:51 +00:00
|
|
|
|
2019-01-25 20:02:03 +00:00
|
|
|
if (GLIBC_COMPATIBILITY)
|
2018-11-16 12:22:51 +00:00
|
|
|
set (GLIBC_MAX_REQUIRED 2.4 CACHE INTERNAL "")
|
2019-01-18 15:19:53 +00:00
|
|
|
# temporary disabled. to enable - change 'exit 0' to 'exit $a'
|
|
|
|
add_test(NAME GLIBC_required_version COMMAND bash -c "readelf -s ${CMAKE_CURRENT_BINARY_DIR}/../clickhouse-server | perl -nE 'END {exit 0 if $a} ++$a, print if /\\x40GLIBC_(\\S+)/ and pack(q{C*}, split /\\./, \$1) gt pack q{C*}, split /\\./, q{${GLIBC_MAX_REQUIRED}}'")
|
|
|
|
|
|
|
|
#add_test(NAME GLIBC_required_version COMMAND bash -c "readelf -s ${CMAKE_CURRENT_BINARY_DIR}/../clickhouse-server | grep '@GLIBC' | grep -oP 'GLIBC_[\\d\\.]+' | sort | uniq | sort --version-sort --reverse | perl -lnE 'warn($_), exit 1 if $_ gt q{GLIBC_${GLIBC_MAX_REQUIRED}}'") # old
|
2018-06-07 14:42:38 +00:00
|
|
|
endif ()
|
2018-06-05 20:09:51 +00:00
|
|
|
|
2019-03-04 17:47:31 +00:00
|
|
|
install(FILES config.xml users.xml DESTINATION ${CLICKHOUSE_ETC_DIR}/clickhouse-server COMPONENT clickhouse)
|