Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JNI build no longer looks for Arrow in conda environment #8686

Merged
merged 2 commits into from
Jul 8, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions java/src/main/native/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@ message(STATUS "RMM: RMM_INCLUDE set to ${RMM_INCLUDE}")

find_path(ARROW_INCLUDE "arrow"
HINTS "$ENV{ARROW_ROOT}/include"
"$ENV{CONDA_PREFIX}/include"
"${CUDF_CPP_BUILD_DIR}/_deps/arrow-src/cpp/src")
"${CUDF_CPP_BUILD_DIR}/_deps/arrow-src/cpp/src"
"$ENV{CONDA_PREFIX}/include")
mythrocks marked this conversation as resolved.
Show resolved Hide resolved

message(STATUS "ARROW: ARROW_INCLUDE set to ${ARROW_INCLUDE}")

Expand All @@ -187,8 +187,8 @@ endif(CUDF_JNI_ARROW_STATIC)

find_library(ARROW_LIBRARY ${CUDF_JNI_ARROW_LIBNAME} REQUIRED
HINTS "$ENV{ARROW_ROOT}/lib"
"$ENV{CONDA_PREFIX}/lib"
"${CUDF_CPP_BUILD_DIR}/_deps/arrow-build/release")
"${CUDF_CPP_BUILD_DIR}/_deps/arrow-build/release"
"$ENV{CONDA_PREFIX}/lib")

if(NOT ARROW_LIBRARY)
if(CUDF_JNI_ARROW_STATIC)
Expand Down