[llvm-commits] [llvm] r117130 - /llvm/trunk/cmake/modules/AddLLVM.cmake

Oscar Fuentes ofv at wanadoo.es
Fri Oct 22 12:03:24 PDT 2010


Author: ofv
Date: Fri Oct 22 14:03:24 2010
New Revision: 117130

URL: http://llvm.org/viewvc/llvm-project?rev=117130&view=rev
Log:
Loadable modules are not supported on Cygwin. PR 6655.

Modified:
    llvm/trunk/cmake/modules/AddLLVM.cmake

Modified: llvm/trunk/cmake/modules/AddLLVM.cmake
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/cmake/modules/AddLLVM.cmake?rev=117130&r1=117129&r2=117130&view=diff
==============================================================================
--- llvm/trunk/cmake/modules/AddLLVM.cmake (original)
+++ llvm/trunk/cmake/modules/AddLLVM.cmake Fri Oct 22 14:03:24 2010
@@ -29,7 +29,7 @@
 
 
 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()





More information about the llvm-commits mailing list