From 86150eaa0fff4cd689ca0d996b6b3c381a55ea44 Mon Sep 17 00:00:00 2001 From: Robert Maynard Date: Mon, 5 Apr 2021 17:52:15 -0400 Subject: [PATCH] cudf now sets an install rpath of $ORIGIN This corrects issues where a conda installed version of cudf can't find other conda installed libraries such as arrow. --- cpp/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index b0c8c255aef..b49f1e3dda1 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -395,6 +395,7 @@ add_library(cudf set_target_properties(cudf PROPERTIES BUILD_RPATH "\$ORIGIN" + INSTALL_RPATH "\$ORIGIN" # set target compile options CXX_STANDARD 14 CXX_STANDARD_REQUIRED ON