kou commented on PR #50587: URL: https://github.com/apache/arrow/pull/50587#issuecomment-5056887387
test-r-depsource-system: https://github.com/ursacomputing/crossbow/actions/runs/29981142748/job/89122965384#step:6:3165 ```text simdjson_SOURCE=BUNDLED ``` https://github.com/ursacomputing/crossbow/actions/runs/29981142748/job/89122965384#step:7:361 ```text CMake Error at cmake_modules/ThirdpartyToolchain.cmake:316 (message): Couldn't find simdjson >= 3.0.0 ``` It seems that `simdjson_SOURCE=BUNDLED` environment variable isn't used. Could you try this? ```diff diff --git a/r/inst/build_arrow_static.sh b/r/inst/build_arrow_static.sh index e7f453bb64..8c8d9d6b95 100755 --- a/r/inst/build_arrow_static.sh +++ b/r/inst/build_arrow_static.sh @@ -107,8 +107,9 @@ ${CMAKE_WRAPPER} ${CMAKE} -DARROW_BOOST_USE_SHARED=OFF \ -DCMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY=ON \ -DCMAKE_UNITY_BUILD=${CMAKE_UNITY_BUILD:-OFF} \ -DOPENSSL_ROOT_DIR=${OPENSSL_ROOT_DIR} \ - -Dre2_SOURCE=${re2_SOURCE:-BUNDLED} \ -Dabsl_SOURCE=${absl_SOURCE:-BUNDLED} \ + -Dre2_SOURCE=${re2_SOURCE:-BUNDLED} \ + -Dsimdjson_SOURCE=${simdjson_SOURCE:-} \ -Dxsimd_SOURCE=${xsimd_SOURCE:-} \ -Dzstd_SOURCE=${zstd_SOURCE:-} \ ${EXTRA_CMAKE_FLAGS} \ ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
