2010-12-11 03:47:54 +08:00
|
|
|
include(CheckLibraryExists)
|
|
|
|
include(CheckCXXCompilerFlag)
|
2016-08-30 05:33:37 +08:00
|
|
|
|
|
|
|
check_library_exists(c fopen "" LIBCXX_HAS_C_LIB)
|
|
|
|
if (NOT LIBCXX_USE_COMPILER_RT)
|
|
|
|
check_library_exists(gcc_s __gcc_personality_v0 "" LIBCXX_HAS_GCC_S_LIB)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# libc++ is built with -nodefaultlibs, so we want all our checks to also
|
|
|
|
# use this option, otherwise we may end up with an inconsistency between
|
|
|
|
# the flags we think we require during configuration (if the checks are
|
|
|
|
# performed without -nodefaultlibs) and the flags that are actually
|
|
|
|
# required during compilation (which has the -nodefaultlibs). libc is
|
|
|
|
# required for the link to go through. We remove sanitizers from the
|
|
|
|
# configuration checks to avoid spurious link errors.
|
|
|
|
check_cxx_compiler_flag(-nodefaultlibs LIBCXX_SUPPORTS_NODEFAULTLIBS_FLAG)
|
|
|
|
if (LIBCXX_SUPPORTS_NODEFAULTLIBS_FLAG)
|
|
|
|
set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -nodefaultlibs")
|
|
|
|
if (LIBCXX_HAS_C_LIB)
|
|
|
|
list(APPEND CMAKE_REQUIRED_LIBRARIES c)
|
|
|
|
endif ()
|
|
|
|
if (LIBCXX_USE_COMPILER_RT)
|
|
|
|
list(APPEND CMAKE_REQUIRED_LIBRARIES -rtlib=compiler-rt)
|
|
|
|
elseif (LIBCXX_HAS_GCC_S_LIB)
|
|
|
|
list(APPEND CMAKE_REQUIRED_LIBRARIES gcc_s)
|
|
|
|
endif ()
|
|
|
|
if (CMAKE_C_FLAGS MATCHES -fsanitize OR CMAKE_CXX_FLAGS MATCHES -fsanitize)
|
|
|
|
set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -fno-sanitize=all")
|
|
|
|
endif ()
|
|
|
|
endif ()
|
|
|
|
|
2016-02-11 20:43:04 +08:00
|
|
|
include(CheckLibcxxAtomic)
|
2010-12-11 03:47:54 +08:00
|
|
|
|
|
|
|
# Check compiler flags
|
2015-07-31 06:30:34 +08:00
|
|
|
|
2014-08-18 13:03:46 +08:00
|
|
|
check_cxx_compiler_flag(/WX LIBCXX_HAS_WX_FLAG)
|
|
|
|
check_cxx_compiler_flag(/WX- LIBCXX_HAS_NO_WX_FLAG)
|
|
|
|
check_cxx_compiler_flag(/EHsc LIBCXX_HAS_EHSC_FLAG)
|
|
|
|
check_cxx_compiler_flag(/EHs- LIBCXX_HAS_NO_EHS_FLAG)
|
|
|
|
check_cxx_compiler_flag(/EHa- LIBCXX_HAS_NO_EHA_FLAG)
|
|
|
|
check_cxx_compiler_flag(/GR- LIBCXX_HAS_NO_GR_FLAG)
|
2010-12-11 03:47:54 +08:00
|
|
|
|
2015-07-31 06:30:34 +08:00
|
|
|
|
2010-12-11 03:47:54 +08:00
|
|
|
# Check libraries
|
|
|
|
check_library_exists(pthread pthread_create "" LIBCXX_HAS_PTHREAD_LIB)
|
|
|
|
check_library_exists(m ccos "" LIBCXX_HAS_M_LIB)
|
2011-05-24 20:54:00 +08:00
|
|
|
check_library_exists(rt clock_gettime "" LIBCXX_HAS_RT_LIB)
|