aboutsummaryrefslogtreecommitdiffstats
path: root/cmake/modules
diff options
context:
space:
mode:
authorOscar Fuentes <ofv@wanadoo.es>2010-10-22 19:03:24 +0000
committerOscar Fuentes <ofv@wanadoo.es>2010-10-22 19:03:24 +0000
commit01a575e2fc33456040564f9292ffa1071de3b875 (patch)
treeacb53f891d3ff495c6bd01eb2879e3b1ebea1323 /cmake/modules
parent1f8b40d51c0e1bb7fce5a69c2fadc656bfef3092 (diff)
downloadexternal_llvm-01a575e2fc33456040564f9292ffa1071de3b875.zip
external_llvm-01a575e2fc33456040564f9292ffa1071de3b875.tar.gz
external_llvm-01a575e2fc33456040564f9292ffa1071de3b875.tar.bz2
Loadable modules are not supported on Cygwin. PR 6655.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117130 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake/modules')
-rwxr-xr-xcmake/modules/AddLLVM.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/modules/AddLLVM.cmake b/cmake/modules/AddLLVM.cmake
index b7ebe19..f45febb 100755
--- a/cmake/modules/AddLLVM.cmake
+++ b/cmake/modules/AddLLVM.cmake
@@ -29,7 +29,7 @@ endmacro(add_llvm_library name)
macro(add_llvm_loadable_module name)
- if( NOT LLVM_ON_UNIX )
+ if( NOT LLVM_ON_UNIX OR CYGWIN )
message(STATUS "Loadable modules not supported on this platform.
${name} ignored.")
else()