Add warning for FORCE_STATIC libraries when using BUILD_SHARED_LIBS.
authorMichael Kruse <llvm@meinersbur.de>
Thu, 25 Aug 2016 13:21:53 +0000 (13:21 +0000)
committerMichael Kruse <llvm@meinersbur.de>
Thu, 25 Aug 2016 13:21:53 +0000 (13:21 +0000)
We cannot built ISL as shared object because we build it with
-fvisibility=hidden; The created shared object would have no accessible symbols.

The reason it is built with -fvisibility=hidden is because opt/clang might load
other libraries that have ISL embedded and whose' symbols would conflict with
Polly's private ISL. This could happend with Draggonegg.

In the future we might instead statically link PollyISL into the Polly shared
object to avoid installing the static library.

Requested-by: Vedran Miletic <vedran@miletic.net>
See-also: llvm.org/PR27306
llvm-svn: 279737

polly/cmake/polly_macros.cmake

index cbdbcee..172e185 100644 (file)
@@ -16,6 +16,10 @@ macro(add_polly_library name)
   if (MODULE)
     set(libkind MODULE)
   elseif (ARG_FORCE_STATIC)
+    if (SHARED_LIBRARY OR BUILD_SHARED_LIBS)
+      message(STATUS "${name} is being built as static library it compiled with -fvisibility=hidden; "
+                     "Its symbols are not visible from outside a shared library")
+    endif ()
     set(libkind STATIC)
   elseif (SHARED_LIBRARY)
     set(libkind SHARED)