[PATCH] D76760: Do export symbols when LLVM_EXPORT_SYMBOLS_FOR_PLUGINS is on.

Simon Tatham via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 26 02:08:27 PDT 2020


This revision was automatically updated to reflect the committed changes.
Closed by commit rG6a946993d519: Do export symbols when LLVM_EXPORT_SYMBOLS_FOR_PLUGINS is on. (authored by simon_tatham).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D76760/new/

https://reviews.llvm.org/D76760

Files:
  llvm/cmake/modules/AddLLVM.cmake


Index: llvm/cmake/modules/AddLLVM.cmake
===================================================================
--- llvm/cmake/modules/AddLLVM.cmake
+++ llvm/cmake/modules/AddLLVM.cmake
@@ -1031,7 +1031,7 @@
 
 # Export symbols if LLVM plugins are enabled.
 function(export_executable_symbols_for_plugins target)
-  if(LLVM_ENABLE_PLUGINS)
+  if(LLVM_ENABLE_PLUGINS OR LLVM_EXPORT_SYMBOLS_FOR_PLUGINS)
     export_executable_symbols(${target})
   endif()
 endfunction()


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D76760.252773.patch
Type: text/x-patch
Size: 466 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200326/8f1e7e52/attachment.bin>


More information about the llvm-commits mailing list