diff options
author | Don Hinton <hintonda@gmail.com> | 2018-01-26 04:01:50 +0000 |
---|---|---|
committer | Don Hinton <hintonda@gmail.com> | 2018-01-26 04:01:50 +0000 |
commit | 3a667b9bd8b741f5ac1d8d47857140a3d70737fb (patch) | |
tree | 93d145f1e9e9e77f3b5c7db49f5f421309b64c36 | |
parent | e3b3b8094d03cef5fd984020ff44422b84498f72 (diff) | |
download | bcm5719-llvm-3a667b9bd8b741f5ac1d8d47857140a3d70737fb.tar.gz bcm5719-llvm-3a667b9bd8b741f5ac1d8d47857140a3d70737fb.zip |
[cmake] [libunwind] Call llvm_setup_rpath() when adding shared libraries.
Clang and llvm already use llvm_setup_rpath(), so this change will
help standarize rpath usage across all projects.
Differential Revision: https://reviews.llvm.org/D42461
llvm-svn: 323496
-rw-r--r-- | libunwind/src/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libunwind/src/CMakeLists.txt b/libunwind/src/CMakeLists.txt index 2d2ec130dfe..601c25832b0 100644 --- a/libunwind/src/CMakeLists.txt +++ b/libunwind/src/CMakeLists.txt @@ -108,6 +108,9 @@ set(LIBUNWIND_TARGETS) # 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 |