Skip to content

Commit

Permalink
Stop checking conda environment for Arrow
Browse files Browse the repository at this point in the history
  • Loading branch information
jlowe committed Jul 7, 2021
1 parent 2bd0974 commit bd22ce4
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions java/src/main/native/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,7 @@ message(STATUS "RMM: RMM_INCLUDE set to ${RMM_INCLUDE}")

find_path(ARROW_INCLUDE "arrow"
HINTS "$ENV{ARROW_ROOT}/include"
"${CUDF_CPP_BUILD_DIR}/_deps/arrow-src/cpp/src"
"$ENV{CONDA_PREFIX}/include")
"${CUDF_CPP_BUILD_DIR}/_deps/arrow-src/cpp/src")

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

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

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

if(NOT ARROW_LIBRARY)
if(CUDF_JNI_ARROW_STATIC)
Expand Down

0 comments on commit bd22ce4

Please sign in to comment.