mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
3505b5a10b
Previously, in #39387, this protection had been added only for linux x86_64. And use include_guard() instead of manual if()+set(). Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
18 lines
847 B
CMake
18 lines
847 B
CMake
# See linux/toolchain-x86_64.cmake for details about multiple load of toolchain file.
|
|
include_guard(GLOBAL)
|
|
|
|
set (CMAKE_SYSTEM_NAME "Darwin")
|
|
set (CMAKE_SYSTEM_PROCESSOR "x86_64")
|
|
set (CMAKE_C_COMPILER_TARGET "x86_64-apple-darwin")
|
|
set (CMAKE_CXX_COMPILER_TARGET "x86_64-apple-darwin")
|
|
set (CMAKE_ASM_COMPILER_TARGET "x86_64-apple-darwin")
|
|
set (CMAKE_OSX_SYSROOT "${CMAKE_CURRENT_LIST_DIR}/../toolchain/darwin-x86_64")
|
|
|
|
set (CMAKE_TRY_COMPILE_TARGET_TYPE STATIC_LIBRARY) # disable linkage check - it doesn't work in CMake
|
|
|
|
set (HAS_PRE_1970_EXITCODE "0" CACHE STRING "Result from TRY_RUN" FORCE)
|
|
set (HAS_PRE_1970_EXITCODE__TRYRUN_OUTPUT "" CACHE STRING "Output from TRY_RUN" FORCE)
|
|
|
|
set (HAS_POST_2038_EXITCODE "0" CACHE STRING "Result from TRY_RUN" FORCE)
|
|
set (HAS_POST_2038_EXITCODE__TRYRUN_OUTPUT "" CACHE STRING "Output from TRY_RUN" FORCE)
|