summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorMartell Malone <martellmalone@gmail.com>2017-05-11 21:16:29 +0000
committerMartell Malone <martellmalone@gmail.com>2017-05-11 21:16:29 +0000
commit0372c576cf7443a9ebdd038d30c1b169d77282a5 (patch)
tree5f8e3a76547325ad85a7f677e1738ca10729d8b7 /cmake
parenta8ac1e119e8d0cf8d4078f89603a597fea31f667 (diff)
[Libcxxabi]: Support using compiler-rt for MinGW64
Reviewers: EricWF Differential Revision: https://reviews.llvm.org/D33098 git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@302824 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake')
-rw-r--r--cmake/config-ix.cmake11
1 files changed, 8 insertions, 3 deletions
diff --git a/cmake/config-ix.cmake b/cmake/config-ix.cmake
index a19b19a..5541ed4 100644
--- a/cmake/config-ix.cmake
+++ b/cmake/config-ix.cmake
@@ -30,9 +30,14 @@ if (LIBCXXABI_HAS_NODEFAULTLIBS_FLAG)
if (MINGW)
# Mingw64 requires quite a few "C" runtime libraries in order for basic
# programs to link successfully with -nodefaultlibs.
- set(MINGW_LIBRARIES mingw32 gcc_s gcc moldname mingwex msvcrt advapi32
- shell32 user32 kernel32 iconv mingw32 gcc_s gcc moldname
- mingwex msvcrt)
+ if (LIBCXXABI_USE_COMPILER_RT)
+ set(MINGW_RUNTIME ${LIBCXXABI_BUILTINS_LIBRARY})
+ else ()
+ set(MINGW_RUNTIME gcc_s gcc)
+ endif()
+ set(MINGW_LIBRARIES mingw32 ${MINGW_RUNTIME} moldname mingwex msvcrt advapi32
+ shell32 user32 kernel32 iconv mingw32 ${MINGW_RUNTIME}
+ moldname mingwex msvcrt)
list(APPEND CMAKE_REQUIRED_LIBRARIES ${MINGW_LIBRARIES})
endif()
if (CMAKE_C_FLAGS MATCHES -fsanitize OR CMAKE_CXX_FLAGS MATCHES -fsanitize)