diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2017-01-01 20:20:38 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2017-01-01 20:20:38 +0000 |
commit | 9dde9491996ae60684fcd0d8aedd06681ab38c19 (patch) | |
tree | af88bad2a842b4a20a4f2d4bbbd115557804245f /libcxx/cmake | |
parent | 61bce47e3b5b526f7b28eccc840ec72a649a70b8 (diff) | |
download | bcm5719-llvm-9dde9491996ae60684fcd0d8aedd06681ab38c19.tar.gz bcm5719-llvm-9dde9491996ae60684fcd0d8aedd06681ab38c19.zip |
build: dont detect libraries for Windows
Hard code the defaults for Windows for the time being. The checks
really are always going to return the same value. Technically, the
pthread linkage is possible, however, it seems better to use the Win32
threading along with the external threading support that we have added.
llvm-svn: 290801
Diffstat (limited to 'libcxx/cmake')
-rw-r--r-- | libcxx/cmake/config-ix.cmake | 33 |
1 files changed, 27 insertions, 6 deletions
diff --git a/libcxx/cmake/config-ix.cmake b/libcxx/cmake/config-ix.cmake index 3f7aff115bf..4f13b787ae3 100644 --- a/libcxx/cmake/config-ix.cmake +++ b/libcxx/cmake/config-ix.cmake @@ -1,9 +1,20 @@ include(CheckLibraryExists) include(CheckCXXCompilerFlag) -check_library_exists(c fopen "" LIBCXX_HAS_C_LIB) +if(WIN32 AND NOT MINGW) + # NOTE(compnerd) this is technically a lie, there is msvcrt, but for now, lets + # let the default linking take care of that. + set(LIBCXX_HAS_C_LIB NO) +else() + check_library_exists(c fopen "" LIBCXX_HAS_C_LIB) +endif() + if (NOT LIBCXX_USE_COMPILER_RT) - check_library_exists(gcc_s __gcc_personality_v0 "" LIBCXX_HAS_GCC_S_LIB) + if(WIN32 AND NOT MINGW) + set(LIBCXX_HAS_GCC_S_LIB NO) + else() + check_library_exists(gcc_s __gcc_personality_v0 "" LIBCXX_HAS_GCC_S_LIB) + endif() endif() # libc++ is built with -nodefaultlibs, so we want all our checks to also @@ -32,7 +43,9 @@ if (LIBCXX_SUPPORTS_NODEFAULTLIBS_FLAG) endif () endif () -include(CheckLibcxxAtomic) +if(NOT WIN32 OR MINGW) + include(CheckLibcxxAtomic) +endif() # Check compiler flags @@ -45,6 +58,14 @@ check_cxx_compiler_flag(/GR- LIBCXX_HAS_NO_GR_FLAG) # Check libraries -check_library_exists(pthread pthread_create "" LIBCXX_HAS_PTHREAD_LIB) -check_library_exists(m ccos "" LIBCXX_HAS_M_LIB) -check_library_exists(rt clock_gettime "" LIBCXX_HAS_RT_LIB) +if(WIN32 AND NOT MINGW) + # TODO(compnerd) do we want to support an emulation layer that allows for the + # use of pthread-win32 or similar libraries to emulate pthreads on Windows? + set(LIBCXX_HAS_PTHREAD_LIB NO) + set(LIBCXX_HAS_M_LIB NO) + set(LIBCXX_HAS_RT_LIB NO) +else() + check_library_exists(pthread pthread_create "" LIBCXX_HAS_PTHREAD_LIB) + check_library_exists(m ccos "" LIBCXX_HAS_M_LIB) + check_library_exists(rt clock_gettime "" LIBCXX_HAS_RT_LIB) +endif() |