From 01a575e2fc33456040564f9292ffa1071de3b875 Mon Sep 17 00:00:00 2001 From: Oscar Fuentes Date: Fri, 22 Oct 2010 19:03:24 +0000 Subject: [PATCH] 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 --- cmake/modules/AddLLVM.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/modules/AddLLVM.cmake b/cmake/modules/AddLLVM.cmake index b7ebe192fc2..f45febbfc3b 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() -- 2.34.1