diff options
author | Sumanth Gundapaneni <sgundapa@codeaurora.org> | 2015-12-01 23:04:33 +0000 |
---|---|---|
committer | Sumanth Gundapaneni <sgundapa@codeaurora.org> | 2015-12-01 23:04:33 +0000 |
commit | 9af8961a86899a5b3bddd3ef4773a3456ba4dc20 (patch) | |
tree | c0cb6da7cd3ab828e9a5493d24633f3278185aed | |
parent | 592d0681985e65f974e52c92a42195b99cfbf95d (diff) | |
download | bcm5719-llvm-9af8961a86899a5b3bddd3ef4773a3456ba4dc20.tar.gz bcm5719-llvm-9af8961a86899a5b3bddd3ef4773a3456ba4dc20.zip |
builtins: Build emutls.c on MINGW builds
Differential Revision: http://reviews.llvm.org/D15083
llvm-svn: 254470
-rw-r--r-- | compiler-rt/lib/builtins/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/builtins/CMakeLists.txt b/compiler-rt/lib/builtins/CMakeLists.txt index 65d8aca9bdc..5ffad1d47b1 100644 --- a/compiler-rt/lib/builtins/CMakeLists.txt +++ b/compiler-rt/lib/builtins/CMakeLists.txt @@ -154,7 +154,7 @@ if(APPLE) atomic_thread_fence.c) endif() -if(NOT WIN32) +if(NOT WIN32 OR MINGW) set(GENERIC_SOURCES ${GENERIC_SOURCES} emutls.c) |