[PATCH] D26289: [CMake] Fix llvm_setup_rpath function
Chris Bieneman via llvm-commits
llvm-commits at lists.llvm.org
Mon Nov 7 11:10:05 PST 2016
beanz added a comment.
I think there is actually a more general solution to this. At the top of the function we can just have:
if(CMAKE_INSTALL_RPATH)
return()
endif()
Then we can remove the conditionals on CMAKE_INSTALL_RPATH, and just allow the target to inherit from the global setting, which is the default.
https://reviews.llvm.org/D26289
More information about the llvm-commits
mailing list