23 lines
723 B
Diff
23 lines
723 B
Diff
From ded1b370c6ccbb427406edc6ab39656144d61818 Mon Sep 17 00:00:00 2001
|
|
From: Alexey Pavlov <alexpux@gmail.com>
|
|
Date: Fri, 25 Dec 2015 20:14:51 +0100
|
|
Subject: [PATCH 1/6] Allow build static clang library for mingw
|
|
|
|
---
|
|
tools/libclang/CMakeLists.txt | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/tools/libclang/CMakeLists.txt b/tools/libclang/CMakeLists.txt
|
|
index 2dd6703076..477e53dd15 100644
|
|
--- a/tools/libclang/CMakeLists.txt
|
|
+++ b/tools/libclang/CMakeLists.txt
|
|
@@ -94,7 +94,7 @@
|
|
if(NOT LLVM_ENABLE_PIC OR LIBCLANG_BUILD_STATIC)
|
|
set(ENABLE_STATIC STATIC)
|
|
endif()
|
|
|
|
-if (WIN32 AND ENABLE_SHARED AND ENABLE_STATIC)
|
|
+if (MSVC AND ENABLE_SHARED AND ENABLE_STATIC)
|
|
unset(ENABLE_STATIC)
|
|
endif()
|