Skip to content

Commit

Permalink
Revert "[VL] Try to find arrow libs from Velox bundled path firstly"
Browse files Browse the repository at this point in the history
This reverts commit 0697ed4.
  • Loading branch information
yma11 committed Jul 15, 2024
1 parent d39f404 commit f348b13
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions cpp/CMake/ConfigArrow.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,7 @@ function(FIND_ARROW_LIB LIB_NAME)
find_library(
ARROW_LIB_${LIB_NAME}
NAMES ${ARROW_LIB_FULL_NAME}
PATHS ${ARROW_LIB_DIR} ${ARROW_LIB64_DIR}
NO_DEFAULT_PATH)
if(NOT ARROW_LIB_${LIB_NAME})
find_library(ARROW_LIB_${LIB_NAME} NAMES ${ARROW_LIB_FULL_NAME})
endif()
PATHS ${ARROW_LIB_DIR} ${ARROW_LIB64_DIR})
if(NOT ARROW_LIB_${LIB_NAME})
message(FATAL_ERROR "Arrow library Not Found: ${ARROW_LIB_FULL_NAME}")
endif()
Expand Down

0 comments on commit f348b13

Please sign in to comment.