mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 17:44:23 +00:00
5678d1ed98
* StorageSystemContributors clean * Fix * ARM fixes * Fix arm compile * fix * Fix macos? * Fix includes * fix * fix * Try fix apple build part 1 * Fix identation * Fix static libc++ in clang * fix arm build * better * fix * fix * better check-include
45 lines
1000 B
CMake
45 lines
1000 B
CMake
include (CheckCXXSourceCompiles)
|
|
include (CMakePushCheckState)
|
|
|
|
cmake_push_check_state ()
|
|
|
|
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
|
|
# clang4 : -no-pie cause error
|
|
# clang6 : -no-pie cause warning
|
|
|
|
if (MAKE_STATIC_LIBRARIES)
|
|
set (TEST_FLAG "-Wl,-Bstatic -stdlib=libc++ -lc++ -lc++abi -Wl,-Bdynamic")
|
|
else ()
|
|
set (TEST_FLAG "-stdlib=libc++ -lc++ -lc++abi")
|
|
endif ()
|
|
|
|
set (CMAKE_REQUIRED_FLAGS "${TEST_FLAG}")
|
|
set (CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} Threads::Threads)
|
|
|
|
check_cxx_source_compiles("
|
|
#include <iostream>
|
|
int main() {
|
|
std::cerr << std::endl;
|
|
return 0;
|
|
}
|
|
" HAVE_LIBCXX)
|
|
|
|
else ()
|
|
|
|
set (TEST_FLAG "-no-pie")
|
|
set (CMAKE_REQUIRED_FLAGS "${TEST_FLAG}")
|
|
|
|
check_cxx_source_compiles("
|
|
int main() {
|
|
return 0;
|
|
}
|
|
" HAVE_NO_PIE)
|
|
|
|
if (HAVE_NO_PIE)
|
|
set (FLAG_NO_PIE ${TEST_FLAG})
|
|
endif ()
|
|
|
|
endif ()
|
|
|
|
cmake_pop_check_state ()
|