aboutsummaryrefslogtreecommitdiff
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
commitff11a23ef3caeb80f60f50c5c494953d98a3dec4 (patch)
treec4eefa1444f419b9db07581afbc36d70867164ad
parent8c251f420977ee1198d89aedaabda484cb404b8c (diff)
downloadllvm-ff11a23ef3caeb80f60f50c5c494953d98a3dec4.zip
llvm-ff11a23ef3caeb80f60f50c5c494953d98a3dec4.tar.gz
llvm-ff11a23ef3caeb80f60f50c5c494953d98a3dec4.tar.bz2
Loadable modules are not supported on Cygwin. PR 6655.
llvm-svn: 117130
-rwxr-xr-xllvm/cmake/modules/AddLLVM.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/cmake/modules/AddLLVM.cmake b/llvm/cmake/modules/AddLLVM.cmake
index b7ebe19..f45febb 100755
--- a/llvm/cmake/modules/AddLLVM.cmake
+++ b/llvm/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()