2020-01-13 09:55:57 +00:00
set ( USE_INTERNAL_LIBCXX_LIBRARY_DEFAULT ${ NOT_UNBUNDLED } )
if ( NOT EXISTS "${ClickHouse_SOURCE_DIR}/contrib/libcxx/CMakeLists.txt" )
message ( WARNING "submodule contrib/libcxx is missing. to fix try run: \n git submodule update --init --recursive" )
set ( USE_INTERNAL_LIBCXX_LIBRARY_DEFAULT 0 )
endif ( )
2019-12-22 09:31:29 +00:00
option ( USE_LIBCXX "Use libc++ and libc++abi instead of libstdc++" ${ NOT_UNBUNDLED } )
2020-01-13 09:55:57 +00:00
option ( USE_INTERNAL_LIBCXX_LIBRARY "Set to FALSE to use system libcxx and libcxxabi libraries instead of bundled" ${ USE_INTERNAL_LIBCXX_LIBRARY_DEFAULT } )
2019-08-28 20:49:37 +00:00
if ( USE_LIBCXX )
set ( CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -D_LIBCPP_DEBUG=0" ) # More checks in debug build.
2018-12-08 03:48:17 +00:00
2019-08-28 20:49:37 +00:00
if ( NOT USE_INTERNAL_LIBCXX_LIBRARY )
find_library ( LIBCXX_LIBRARY c++ )
find_library ( LIBCXXFS_LIBRARY c++fs )
find_library ( LIBCXXABI_LIBRARY c++abi )
2019-08-30 17:40:27 +00:00
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++" )
2019-08-28 20:49:37 +00:00
target_link_libraries ( global-libs INTERFACE ${ EXCEPTION_HANDLING_LIBRARY } )
else ( )
set ( LIBCXX_LIBRARY cxx )
set ( LIBCXXABI_LIBRARY cxxabi )
add_subdirectory ( contrib/libcxxabi-cmake )
add_subdirectory ( contrib/libcxx-cmake )
# Exception handling library is embedded into libcxxabi.
endif ( )
target_link_libraries ( global-libs INTERFACE ${ LIBCXX_LIBRARY } ${ LIBCXXABI_LIBRARY } ${ LIBCXXFS_LIBRARY } )
set ( HAVE_LIBCXX 1 )
message ( STATUS "Using libcxx: ${LIBCXX_LIBRARY}" )
message ( STATUS "Using libcxxfs: ${LIBCXXFS_LIBRARY}" )
message ( STATUS "Using libcxxabi: ${LIBCXXABI_LIBRARY}" )
2018-12-08 03:48:17 +00:00
else ( )
2019-08-28 20:49:37 +00:00
target_link_libraries ( global-libs INTERFACE -l:libstdc++.a -l:libstdc++fs.a ) # Always link these libraries as static
target_link_libraries ( global-libs INTERFACE ${ EXCEPTION_HANDLING_LIBRARY } )
2018-12-08 03:48:17 +00:00
endif ( )