Skip to content

Commit 8befd76

Browse files
committed
Debug
1 parent c3ae53b commit 8befd76

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

ci/scripts/jni_build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
7070
if [ "${ARROW_JAVA_BUILD_TESTS}" = "ON" ]; then
7171
ctest \
7272
--output-on-failure \

ci/scripts/jni_manylinux_build.sh

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,23 @@ export AWS_EC2_METADATA_DISABLED=TRUE
7070

7171
install_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
7390
cmake \
7491
-S "${arrow_dir}/cpp" \
7592
-B "${build_dir}/cpp" \

0 commit comments

Comments
 (0)