forked from OSchip/llvm-project
Loadable modules are not supported on Cygwin. PR 6655.
llvm-svn: 117130
This commit is contained in:
parent
8c251f4209
commit
ff11a23ef3
|
@ -29,7 +29,7 @@ endmacro(add_llvm_library name)
|
||||||
|
|
||||||
|
|
||||||
macro(add_llvm_loadable_module 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.
|
message(STATUS "Loadable modules not supported on this platform.
|
||||||
${name} ignored.")
|
${name} ignored.")
|
||||||
else()
|
else()
|
||||||
|
|
Loading…
Reference in New Issue