File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ cmake \
6666 -DProtobuf_USE_STATIC_LIBS=ON \
6767 -GNinja \
6868 " ${EXTRA_CMAKE_OPTIONS[@]} "
69- cmake --build " ${build_dir} "
69+ cmake --build " ${build_dir} " --verbose
7070if [ " ${ARROW_JAVA_BUILD_TESTS} " = " ON" ]; then
7171 ctest \
7272 --output-on-failure \
Original file line number Diff line number Diff line change @@ -70,6 +70,23 @@ export AWS_EC2_METADATA_DISABLED=TRUE
7070
7171install_dir=" ${build_dir} /cpp-install"
7272
73+ pushd " ${arrow_dir} "
74+ cat << EOF | patch -p1
75+ diff --git a/cpp/src/arrow/CMakeLists.txt b/cpp/src/arrow/CMakeLists.txt
76+ index fcdfaa21c7..9f30cc13e3 100644
77+ --- a/cpp/src/arrow/CMakeLists.txt
78+ +++ b/cpp/src/arrow/CMakeLists.txt
79+ @@ -80,7 +80,7 @@ if(ARROW_WITH_ZSTD)
80+ endif()
81+
82+ if(ARROW_ORC)
83+ - if(ORC_SOURCE STREQUAL "SYSTEM")
84+ + if(orc_SOURCE STREQUAL "SYSTEM")
85+ list(APPEND ARROW_STATIC_INSTALL_INTERFACE_LIBS orc::orc)
86+ endif()
87+ endif()
88+ EOF
89+ popd
7390cmake \
7491 -S " ${arrow_dir} /cpp" \
7592 -B " ${build_dir} /cpp" \
You can’t perform that action at this time.
0 commit comments