[PATCH] D42461: [cmake] [libunwind] Call llvm_setup_rpath() when adding shared libraries.

Don Hinton via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Thu Jan 25 19:57:39 PST 2018


hintonda updated this revision to Diff 131537.
hintonda added a comment.

Only call llvm_setup_rpath() if LLVM_FOUND is true.


Repository:
  rUNW libunwind

https://reviews.llvm.org/D42461

Files:
  src/CMakeLists.txt


Index: src/CMakeLists.txt
===================================================================
--- src/CMakeLists.txt
+++ src/CMakeLists.txt
@@ -108,6 +108,9 @@
 # Build the shared library.
 if (LIBUNWIND_ENABLE_SHARED)
   add_library(unwind_shared SHARED $<TARGET_OBJECTS:unwind_objects>)
+  if(LLVM_FOUND)
+    llvm_setup_rpath(unwind_shared)
+  endif()
   target_link_libraries(unwind_shared ${libraries})
   set_target_properties(unwind_shared
                         PROPERTIES


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D42461.131537.patch
Type: text/x-patch
Size: 483 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20180126/83da0c9c/attachment.bin>


More information about the cfe-commits mailing list