mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
77bd2624ea
* Fix building without submodules * Fix more gcc9 warnings * was wrong! ../dbms/src/IO/WriteBufferAIO.cpp:277:54: error: result of comparison 'ssize_t' (aka 'long') > 9223372036854775807 is always false [-Werror,-Wtautological-type-limit-compare] if ((static_cast<ssize_t>(flush_buffer.offset()) > std::numeric_limits<off_t>::max()) || ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * mimalloc off MI_OVERRIDE * Fix freebsd build * Fix shared build * Fix build in gcc9 * Fix split build * fix * fix * fix * fix * clean * zstd * Update CMakeLists.txt * Update Defines.h * Try fix -Wsign-compare * Freebsd fix * Add missing libs * Fix double-conversion include for copy-headers * Fix zlib link * Fix includes for arcadia * Fix includes for arcadia * Fix includes for arcadia * Freebsd fix * Arcadia fixes * Update QueryProfiler.cpp * Freebsd fix * clean * 19.11: Fixes for arcadia porting (#6223) * fix glibc-compatibility * M_LIBRARY fix * wip * Fix * Fix arm build * unwind fix * Update CMakeLists.txt
14 lines
559 B
CMake
14 lines
559 B
CMake
SET(LIBRARY_DIR ${ClickHouse_SOURCE_DIR}/contrib/double-conversion)
|
|
|
|
add_library(double-conversion
|
|
${LIBRARY_DIR}/double-conversion/bignum.cc
|
|
${LIBRARY_DIR}/double-conversion/bignum-dtoa.cc
|
|
${LIBRARY_DIR}/double-conversion/cached-powers.cc
|
|
${LIBRARY_DIR}/double-conversion/diy-fp.cc
|
|
${LIBRARY_DIR}/double-conversion/double-conversion.cc
|
|
${LIBRARY_DIR}/double-conversion/fast-dtoa.cc
|
|
${LIBRARY_DIR}/double-conversion/fixed-dtoa.cc
|
|
${LIBRARY_DIR}/double-conversion/strtod.cc)
|
|
|
|
target_include_directories(double-conversion SYSTEM BEFORE PUBLIC "${LIBRARY_DIR}")
|