You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "paleolimbot (via GitHub)" <gi...@apache.org> on 2023/01/21 17:30:56 UTC

[GitHub] [arrow] paleolimbot opened a new issue, #33819: [R] R package fails to install when using clang-16 as the compiler

paleolimbot opened a new issue, #33819:
URL: https://github.com/apache/arrow/issues/33819

   ### Describe the bug, including details regarding any error messages, version, and platform.
   
   On the CRAN package check page ( https://cran.r-project.org/web/checks/check_results_arrow.html ) there is a new warning about clang-16. We don't get any diagnostics in the compiler output ( https://www.stats.ox.ac.uk/pub/bdr/clang16/arrow.log ) because we suppress that output by default; however, it seems as though the failure is at the Arrow C++ build step and not the R package build step.
   
   On submission we will need to submit an explanation or we will need to patch the vendored Arrow C++ to ensure that it builds prior to submission. The first step is to reproduce...LLVM provides a Dockerfile that we can probably build from ( https://github.com/llvm/llvm-project/blob/main/llvm/utils/docker/debian10/Dockerfile + `apt-get install -y r-base` will get us close).
   
   ### Component(s)
   
   R


-- 
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: issues-unsubscribe@arrow.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] paleolimbot commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "paleolimbot (via GitHub)" <gi...@apache.org>.
paleolimbot commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1399553841

   ...and with `-DARROW_S3=ON -DARROW_GCS=ON` it's OK too. Will try with the R source package on Monday.


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] paleolimbot commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "paleolimbot (via GitHub)" <gi...@apache.org>.
paleolimbot commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1420125435

   I can confirm that updating boost using the commits in XXX fix the Arrow build:
   
   ```dockerfile
   FROM rhub/clang16:latest
   
   RUN apt-get update && apt-get install -y cmake git libssl-dev
   
   # Checkout the Arrow + switch to a branch
   RUN git clone https://github.com/thisisnic/arrow.git /arrow && \
     cd /arrow && \
     git switch r-11.0.0
   
   RUN git config --global user.email "you@example.com" && \
     git config --global user.name "Your Name"
   
   # pick the boost fix
   RUN cd /arrow && \
     git remote add paleolimbot https://github.com/paleolimbot/arrow.git && \
     git fetch paleolimbot && \
     git switch update-bundled-boost && \
     git switch r-11.0.0 && \
     git cherry-pick 964488a66fa89a5818589910be06eaa55e485370 && \
     git cherry-pick 654afce44ece22b2c5a84e62bb46d4cf0f256aa3 && \
     git cherry-pick ddc5c78dd722eb8068a9eae9ce5ae07c954ae2e3 && \
     git cherry-pick a934a4806e3d7972cc9b42f737615369ba1599c0
   
   RUN mkdir /arrow-build && \
     cd /arrow-build && \
     cmake /arrow/cpp \
     -DCMAKE_C_COMPILER="clang-16"  -DCMAKE_CXX_COMPILER="clang++-16" \
     -DCMAKE_CXX_FLAGS="-stdlib=libc++" \
     -DARROW_CSV=ON -DARROW_DATASET=ON -DARROW_FILESYSTEM=ON \
     -DARROW_COMPUTE=ON -DARROW_PARQUET=ON -DBoost_SOURCE=BUNDLED
   
   # Pass even if the build fails so that we can copy error logs from /arrow-build
   ENV VERBOSE 1
   RUN cd /arrow-build && cmake --build . > /build_log.txt || true
   RUN cp /arrow-build/thrift_ep-prefix/src/thrift_ep-stamp/thrift_ep-build-*.log / || true
   ```
   
   The Arrow R package build also needs checking though.


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] paleolimbot commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "paleolimbot (via GitHub)" <gi...@apache.org>.
paleolimbot commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1421259897

   Thanks! I think we're good! At least from the clang16 perspective...I validated that the R package installs with clang-16 (i.e., there were no *additional* build errors):
   
   ```dockerfile
   FROM rhub/clang16:latest
   
   RUN apt-get update && apt-get install -y cmake git libssl-dev
   
   # Checkout the Arrow + switch to a branch
   RUN git clone https://github.com/thisisnic/arrow.git /arrow && \
     cd /arrow && \
     git switch r-11.0.0
   
   RUN git config --global user.email "you@example.com" && \
     git config --global user.name "Your Name"
   
   # pick the boost fix
   RUN cd /arrow && \
     git remote add paleolimbot https://github.com/paleolimbot/arrow.git && \
     git fetch paleolimbot && \
     git switch update-bundled-boost && \
     git switch r-11.0.0 && \
     git cherry-pick 964488a66fa89a5818589910be06eaa55e485370 && \
     git cherry-pick 654afce44ece22b2c5a84e62bb46d4cf0f256aa3 && \
     git cherry-pick ddc5c78dd722eb8068a9eae9ce5ae07c954ae2e3 && \
     git cherry-pick a934a4806e3d7972cc9b42f737615369ba1599c0
   
   RUN apt-get install -y rsync
   RUN cd /arrow/r && make sync-cpp && cd .. && R CMD build r
   RUN R -e 'install.packages("pak")' && R -e "pak::local_install_deps('/arrow/r')"
   ENV VERBOSE 1
   ENV ARROW_R_DEV true
   RUN R CMD INSTALL /arrow/arrow_11.0.0.tar.gz
   RUN R -e 'library(arrow)'
   ```
   
   I will also run `R CMD check` to be sure; however, I think it's worth picking that commit into https://github.com/apache/arrow/pull/33952 and re-running `crossbow submit --group r`.


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] paleolimbot commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "paleolimbot (via GitHub)" <gi...@apache.org>.
paleolimbot commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1401348642

   I double checked and I have indeed been running the check under the clang from 23 days ago (version above). I got a little worried because the buddy building/uploading that image hasn't uploaded an aarch64 one for a long time and the version of clang on that image is 11 😬 
   
   `apt-get install clang` does indeed pull an image from today (as long as you're on x86)...according to the docs, it gets built twice a day. I have that check running now.


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] paleolimbot commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "paleolimbot (via GitHub)" <gi...@apache.org>.
paleolimbot commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1402444148

   Thanks...and there's also that libc++ vs the GCC difference to keep in mind. I can poke away at attempting a Fedora image too but for the purposes of submission (if we get there first) we can probably say that we compiled the package under the latest clang available to us.
   
   I updated the docker image and get:
   
   ```
   clang --version
   Debian clang version 16.0.0 (++20230116071901+2563ad8ef1a8-1~exp1~20230116072002.532)
   Target: x86_64-pc-linux-gnu
   Thread model: posix
   InstalledDir: /usr/bin
   ```
   
   ...which is still a week old or so. I get the same result (no build problems).


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] paleolimbot commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "paleolimbot (via GitHub)" <gi...@apache.org>.
paleolimbot commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1419568325

   Ok! Reproduced thanks to `docker pull rhub/clang16:latest` ( https://github.com/r-hub/rhub-linux-builders/issues/67 ):
   
   Dockerfile:
   
   ```dockerfile
   FROM rhub/clang16:latest
   
   RUN R -e "install.packages(c('cpp11', 'assertthat', 'bit64', 'lifecycle', 'purrr', 'rlang', 'tidyselect', 'vctrs', 'dplyr'))"
   ENV ARROW_R_DEV=true
   ```
   
   I downloaded the release candidate from https://github.com/ursacomputing/crossbow/suites/10690329002/artifacts/535225657 (the r-binary-packages run for https://github.com/apache/arrow/pull/33952 ). And did an `VERBOSE=1 R CMD INSTALL arrow_11.0.0.tar.gz > /install-log.txt`
   
   I can reproduce the output from CRAN there. I believe the compile error is here:
   
   ```
   /file2a59389c27/thrift_ep-prefix/src/thrift_ep-build -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src -isystem /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep -O3 -Wall -pedantic -frtti -Qunused-arguments -fcolor-diagnostics -fPIC -Wno-deprecated-register -O3 -DNDEBUG -O2 -std=c++17 -MD -MT lib/cpp/CMakeFiles/thrift.dir/src/thrift/transport/THttpTransport.cpp.o -MF CMakeFiles/thrift.dir/src/thrift/transport/THttpTransport.cpp.o.d -o CMakeFiles/thrift.dir/src/thrift/transport/THttpTransport.cpp.o -c /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src/thrift/transport/THttpTransport.cpp
   make[5]: Leaving directory '/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build'
   make[4]: Leaving directory '/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build'
   make[3]: Leaving directory '/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build'
   
   -- stderr output is:
   ...skipping to end...
   ib/cpp/src/thrift/protocol/TProtocol.h:568:16: note: overridden virtual function is here
     virtual void checkReadBytesAvailable(TMap& map)
                  ^
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src/thrift/protocol/TJSONProtocol.cpp:22:
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep/boost/locale.hpp:20:
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep/boost/locale/gnu_gettext.hpp:12:
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep/boost/function.hpp:30:
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep/boost/function/detail/prologue.hpp:17:
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep/boost/function/function_base.hpp:21:
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep/boost/type_index.hpp:29:
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep/boost/type_index/stl_type_index.hpp:47:
   /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep/boost/container_hash/hash.hpp:131:33: error: no template named 'unary_function' in namespace 'std'; did you mean '__unary_function'?
           struct hash_base : std::unary_function<T, std::size_t> {};
                              ~~~~~^
   /usr/lib/llvm-16/bin/../include/c++/v1/__functional/unary_function.h:46:1: note: '__unary_function' declared here
   using __unary_function = __unary_function_keep_layout_base<_Arg, _Result>;
   ^
   ```
   
   Full log:
   
   <details>
   
   **** pkg-config not installed, setting ARROW_DEPENDENCY_SOURCE=BUNDLED
   *** Found libc++
   *** Found local C++ source: 'tools/cpp'
   *** Building libarrow from source
       For build options and troubleshooting, see the install guide:
       https://arrow.apache.org/docs/r/articles/install.html
   *** Building with MAKEFLAGS= -j2 
   **** cmake
   **** arrow with SOURCE_DIR='tools/cpp' BUILD_DIR='/tmp/RtmpzZZyw3/file2a59389c27' DEST_DIR='libarrow/arrow-11.0.0' CMAKE='/tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake' EXTRA_CMAKE_FLAGS='' CC='clang-16 -std=gnu2x' CXX='clang++-16 -stdlib=libc++ -std=gnu++17' LDFLAGS='-L/usr/local/lib' ARROW_S3='OFF' ARROW_GCS='OFF' 
   /tmp/RtmpzZZyw3/file2a59389c27 /tmp/Rtmp0kQKHC/R.INSTALL1c11c1c3ba/arrow
   Re-run cmake no build system arguments
   -- Building using CMake version: 3.21.4
   -- The C compiler identification is Clang 16.0.0
   -- The CXX compiler identification is Clang 16.0.0
   -- Detecting C compiler ABI info
   -- Detecting C compiler ABI info - done
   -- Check for working C compiler: /usr/bin/clang-16 - skipped
   -- Detecting C compile features
   -- Detecting C compile features - done
   -- Detecting CXX compiler ABI info
   -- Detecting CXX compiler ABI info - done
   -- Check for working CXX compiler: /usr/bin/clang++-16 - skipped
   -- Detecting CXX compile features
   -- Detecting CXX compile features - done
   -- Arrow version: 11.0.0 (full: '11.0.0')
   -- Arrow SO version: 1100 (full: 1100.0.0)
   -- clang-tidy 14 not found
   -- clang-format 14 not found
   -- Could NOT find ClangTools (missing: CLANG_FORMAT_BIN CLANG_TIDY_BIN) 
   -- infer not found
   -- Found Python3: /usr/bin/python3.10 (found version "3.10.6") found components: Interpreter 
   -- Found cpplint executable at /tmp/Rtmp0kQKHC/R.INSTALL1c11c1c3ba/arrow/tools/cpp/build-support/cpplint.py
   -- System processor: x86_64
   -- Performing Test CXX_SUPPORTS_SSE4_2
   -- Performing Test CXX_SUPPORTS_SSE4_2 - Success
   -- Performing Test CXX_SUPPORTS_AVX2
   -- Performing Test CXX_SUPPORTS_AVX2 - Success
   -- Performing Test CXX_SUPPORTS_AVX512
   -- Performing Test CXX_SUPPORTS_AVX512 - Success
   -- Arrow build warning level: PRODUCTION
   -- Using ld linker
   -- Build Type: RELEASE
   -- Performing Test CXX_LINKER_SUPPORTS_VERSION_SCRIPT
   -- Performing Test CXX_LINKER_SUPPORTS_VERSION_SCRIPT - Success
   -- Using BUNDLED approach to find dependencies
   -- ARROW_ABSL_BUILD_VERSION: 20211102.0
   -- ARROW_ABSL_BUILD_SHA256_CHECKSUM: dcf71b9cba8dc0ca9940c4b316a0c796be8fab42b070bb6b7cab62b48f0e66c4
   -- ARROW_AWSSDK_BUILD_VERSION: 1.8.133
   -- ARROW_AWSSDK_BUILD_SHA256_CHECKSUM: d6c495bc06be5e21dac716571305d77437e7cfd62a2226b8fe48d9ab5785a8d6
   -- ARROW_AWS_CHECKSUMS_BUILD_VERSION: v0.1.12
   -- ARROW_AWS_CHECKSUMS_BUILD_SHA256_CHECKSUM: 394723034b81cc7cd528401775bc7aca2b12c7471c92350c80a0e2fb9d2909fe
   -- ARROW_AWS_C_COMMON_BUILD_VERSION: v0.6.9
   -- ARROW_AWS_C_COMMON_BUILD_SHA256_CHECKSUM: 928a3e36f24d1ee46f9eec360ec5cebfe8b9b8994fe39d4fa74ff51aebb12717
   -- ARROW_AWS_C_EVENT_STREAM_BUILD_VERSION: v0.1.5
   -- ARROW_AWS_C_EVENT_STREAM_BUILD_SHA256_CHECKSUM: f1b423a487b5d6dca118bfc0d0c6cc596dc476b282258a3228e73a8f730422d4
   -- ARROW_BOOST_BUILD_VERSION: 1.75.0
   -- ARROW_BOOST_BUILD_SHA256_CHECKSUM: 267e04a7c0bfe85daf796dedc789c3a27a76707e1c968f0a2a87bb96331e2b61
   -- ARROW_BROTLI_BUILD_VERSION: v1.0.9
   -- ARROW_BROTLI_BUILD_SHA256_CHECKSUM: f9e8d81d0405ba66d181529af42a3354f838c939095ff99930da6aa9cdf6fe46
   -- ARROW_BZIP2_BUILD_VERSION: 1.0.8
   -- ARROW_BZIP2_BUILD_SHA256_CHECKSUM: ab5a03176ee106d3f0fa90e381da478ddae405918153cca248e682cd0c4a2269
   -- ARROW_CARES_BUILD_VERSION: 1.17.2
   -- ARROW_CARES_BUILD_SHA256_CHECKSUM: 4803c844ce20ce510ef0eb83f8ea41fa24ecaae9d280c468c582d2bb25b3913d
   -- ARROW_CRC32C_BUILD_VERSION: 1.1.2
   -- ARROW_CRC32C_BUILD_SHA256_CHECKSUM: ac07840513072b7fcebda6e821068aa04889018f24e10e46181068fb214d7e56
   -- ARROW_GBENCHMARK_BUILD_VERSION: v1.6.0
   -- ARROW_GBENCHMARK_BUILD_SHA256_CHECKSUM: 1f71c72ce08d2c1310011ea6436b31e39ccab8c2db94186d26657d41747c85d6
   -- ARROW_GFLAGS_BUILD_VERSION: v2.2.2
   -- ARROW_GFLAGS_BUILD_SHA256_CHECKSUM: 34af2f15cf7367513b352bdcd2493ab14ce43692d2dcd9dfc499492966c64dcf
   -- ARROW_GLOG_BUILD_VERSION: v0.5.0
   -- ARROW_GLOG_BUILD_SHA256_CHECKSUM: eede71f28371bf39aa69b45de23b329d37214016e2055269b3b5e7cfd40b59f5
   -- ARROW_GOOGLE_CLOUD_CPP_BUILD_VERSION: v1.42.0
   -- ARROW_GOOGLE_CLOUD_CPP_BUILD_SHA256_CHECKSUM: c06ae9aededbb8aa217a6d2453754daa40b815f9a4004bc4f2d2d215c79828aa
   -- ARROW_GRPC_BUILD_VERSION: v1.46.3
   -- ARROW_GRPC_BUILD_SHA256_CHECKSUM: d6cbf22cb5007af71b61c6be316a79397469c58c82a942552a62e708bce60964
   -- ARROW_GTEST_BUILD_VERSION: 1.11.0
   -- ARROW_GTEST_BUILD_SHA256_CHECKSUM: b4870bf121ff7795ba20d20bcdd8627b8e088f2d1dab299a031c1034eddc93d5
   -- ARROW_JEMALLOC_BUILD_VERSION: 5.3.0
   -- ARROW_JEMALLOC_BUILD_SHA256_CHECKSUM: 2db82d1e7119df3e71b7640219b6dfe84789bc0537983c3b7ac4f7189aecfeaa
   -- ARROW_LZ4_BUILD_VERSION: v1.9.4
   -- ARROW_LZ4_BUILD_SHA256_CHECKSUM: 0b0e3aa07c8c063ddf40b082bdf7e37a1562bda40a0ff5272957f3e987e0e54b
   -- ARROW_MIMALLOC_BUILD_VERSION: v2.0.6
   -- ARROW_MIMALLOC_BUILD_SHA256_CHECKSUM: 9f05c94cc2b017ed13698834ac2a3567b6339a8bde27640df5a1581d49d05ce5
   -- ARROW_NLOHMANN_JSON_BUILD_VERSION: v3.10.5
   -- ARROW_NLOHMANN_JSON_BUILD_SHA256_CHECKSUM: 5daca6ca216495edf89d167f808d1d03c4a4d929cef7da5e10f135ae1540c7e4
   -- ARROW_OPENTELEMETRY_BUILD_VERSION: v1.4.1
   -- ARROW_OPENTELEMETRY_BUILD_SHA256_CHECKSUM: 301b1ab74a664723560f46c29f228360aff1e2d63e930b963755ea077ae67524
   -- ARROW_OPENTELEMETRY_PROTO_BUILD_VERSION: v0.17.0
   -- ARROW_OPENTELEMETRY_PROTO_BUILD_SHA256_CHECKSUM: f269fbcb30e17b03caa1decd231ce826e59d7651c0f71c3b28eb5140b4bb5412
   -- ARROW_ORC_BUILD_VERSION: 1.8.1
   -- ARROW_ORC_BUILD_SHA256_CHECKSUM: ba5877bd737e1fbc69822d3861b8e84854640bf2439b7ddad536d6303dd3638d
   -- ARROW_PROTOBUF_BUILD_VERSION: v21.3
   -- ARROW_PROTOBUF_BUILD_SHA256_CHECKSUM: 2f723218f6cb709ae4cdc4fb5ed56a5951fc5d466f0128ce4c946b8c78c8c49f
   -- ARROW_RAPIDJSON_BUILD_VERSION: 232389d4f1012dddec4ef84861face2d2ba85709
   -- ARROW_RAPIDJSON_BUILD_SHA256_CHECKSUM: b9290a9a6d444c8e049bd589ab804e0ccf2b05dc5984a19ed5ae75d090064806
   -- ARROW_RE2_BUILD_VERSION: 2022-06-01
   -- ARROW_RE2_BUILD_SHA256_CHECKSUM: f89c61410a072e5cbcf8c27e3a778da7d6fd2f2b5b1445cd4f4508bee946ab0f
   -- ARROW_SNAPPY_BUILD_VERSION: 1.1.9
   -- ARROW_SNAPPY_BUILD_SHA256_CHECKSUM: 75c1fbb3d618dd3a0483bff0e26d0a92b495bbe5059c8b4f1c962b478b6e06e7
   -- ARROW_SUBSTRAIT_BUILD_VERSION: v0.20.0
   -- ARROW_SUBSTRAIT_BUILD_SHA256_CHECKSUM: 5ceaa559ccef29a7825b5e5d4b5e7eed384830294f08bec913feecdd903a94cf
   -- ARROW_THRIFT_BUILD_VERSION: 0.16.0
   -- ARROW_THRIFT_BUILD_SHA256_CHECKSUM: f460b5c1ca30d8918ff95ea3eb6291b3951cf518553566088f3f2be8981f6209
   -- ARROW_UCX_BUILD_VERSION: 1.12.1
   -- ARROW_UCX_BUILD_SHA256_CHECKSUM: 9bef31aed0e28bf1973d28d74d9ac4f8926c43ca3b7010bd22a084e164e31b71
   -- ARROW_UTF8PROC_BUILD_VERSION: v2.7.0
   -- ARROW_UTF8PROC_BUILD_SHA256_CHECKSUM: 4bb121e297293c0fd55f08f83afab6d35d48f0af4ecc07523ad8ec99aa2b12a1
   -- ARROW_XSIMD_BUILD_VERSION: 9.0.1
   -- ARROW_XSIMD_BUILD_SHA256_CHECKSUM: b1bb5f92167fd3a4f25749db0be7e61ed37e0a5d943490f3accdcd2cd2918cc0
   -- ARROW_ZLIB_BUILD_VERSION: 1.2.13
   -- ARROW_ZLIB_BUILD_SHA256_CHECKSUM: b3a24de97a8fdbc835b9833169501030b8977031bcb54b3b3ac13740f846ab30
   -- ARROW_ZSTD_BUILD_VERSION: v1.5.2
   -- ARROW_ZSTD_BUILD_SHA256_CHECKSUM: f7de13462f7a82c29ab865820149e778cbfe01087b3a55b5332707abf9db4a6e
   -- Looking for pthread.h
   -- Looking for pthread.h - found
   -- Performing Test CMAKE_HAVE_LIBC_PTHREAD
   -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
   -- Found Threads: TRUE  
   -- Looking for _M_ARM64
   -- Looking for _M_ARM64 - not found
   -- Looking for __SIZEOF_INT128__
   -- Looking for __SIZEOF_INT128__ - found
   -- Boost include dir: /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep
   -- Building snappy from source
   -- Building without OpenSSL support. Minimum OpenSSL version 1.0.2 required.
   -- Building Apache Thrift from source
   -- Building (vendored) mimalloc from source
   -- Building RapidJSON from source
   -- Building xsimd from source
   -- Building LZ4 from source
   -- Building RE2 from source
   -- Building utf8proc from source
   -- Found hdfs.h at: /tmp/Rtmp0kQKHC/R.INSTALL1c11c1c3ba/arrow/tools/cpp/thirdparty/hadoop/include/hdfs.h
   -- All bundled static libraries: Snappy::snappy-static;thrift::thrift;mimalloc::mimalloc;LZ4::lz4;re2::re2;utf8proc::utf8proc
   -- CMAKE_C_FLAGS: -O3 -Wall -pedantic -Qunused-arguments  -Wall -Wno-unknown-warning-option -Wno-pass-failed -msse4.2 
   -- CMAKE_CXX_FLAGS:  -O3 -Wall -pedantic -frtti -Qunused-arguments -fcolor-diagnostics  -Wall -Wno-unknown-warning-option -Wno-pass-failed -msse4.2 
   -- CMAKE_C_FLAGS_RELEASE: -O3 -DNDEBUG -O2
   -- CMAKE_CXX_FLAGS_RELEASE: -O3 -DNDEBUG -O2
   -- Creating bundled static library target arrow_bundled_dependencies at /tmp/RtmpzZZyw3/file2a59389c27/release/libarrow_bundled_dependencies.a
   -- Looking for backtrace
   -- Looking for backtrace - found
   -- backtrace facility detected in default set of libraries
   -- Found Backtrace: /usr/include  
   -- ---------------------------------------------------------------------
   -- Arrow version:                                 11.0.0
   -- 
   -- Build configuration summary:
   --   Generator: Unix Makefiles
   --   Build type: RELEASE
   --   Source directory: /tmp/Rtmp0kQKHC/R.INSTALL1c11c1c3ba/arrow/tools/cpp
   --   Install prefix: /tmp/Rtmp0kQKHC/R.INSTALL1c11c1c3ba/arrow/libarrow/arrow-11.0.0
   -- 
   -- Compile and link options:
   -- 
   --   ARROW_CXXFLAGS="" [default=""]
   --       Compiler flags to append when compiling Arrow
   --   ARROW_BUILD_STATIC=ON [default=ON]
   --       Build static libraries
   --   ARROW_BUILD_SHARED=OFF [default=ON]
   --       Build shared libraries
   --   ARROW_PACKAGE_KIND="" [default=""]
   --       Arbitrary string that identifies the kind of package
   --       (for informational purposes)
   --   ARROW_GIT_ID="" [default=""]
   --       The Arrow git commit id (if any)
   --   ARROW_GIT_DESCRIPTION="" [default=""]
   --       The Arrow git commit description (if any)
   --   ARROW_NO_DEPRECATED_API=OFF [default=OFF]
   --       Exclude deprecated APIs from build
   --   ARROW_POSITION_INDEPENDENT_CODE=ON [default=ON]
   --       Whether to create position-independent target
   --   ARROW_USE_CCACHE=ON [default=ON]
   --       Use ccache when compiling (if available)
   --   ARROW_USE_SCCACHE=ON [default=ON]
   --       Use sccache when compiling (if available),
   --       takes precedence over ccache if a storage backend is configured
   --   ARROW_USE_LD_GOLD=OFF [default=OFF]
   --       Use ld.gold for linking on Linux (if available)
   --   ARROW_USE_PRECOMPILED_HEADERS=OFF [default=OFF]
   --       Use precompiled headers when compiling
   --   ARROW_SIMD_LEVEL=SSE4_2 [default=NONE|SSE4_2|AVX2|AVX512|NEON|SVE|SVE128|SVE256|SVE512|DEFAULT]
   --       Compile-time SIMD optimization level
   --   ARROW_RUNTIME_SIMD_LEVEL=MAX [default=NONE|SSE4_2|AVX2|AVX512|MAX]
   --       Max runtime SIMD optimization level
   --   ARROW_ALTIVEC=ON [default=ON]
   --       Build with Altivec if compiler has support
   --   ARROW_RPATH_ORIGIN=OFF [default=OFF]
   --       Build Arrow libraries with RATH set to $ORIGIN
   --   ARROW_INSTALL_NAME_RPATH=ON [default=ON]
   --       Build Arrow libraries with install_name set to @rpath
   --   ARROW_GGDB_DEBUG=ON [default=ON]
   --       Pass -ggdb flag to debug builds
   --   ARROW_WITH_MUSL=OFF [default=OFF]
   --       Whether the system libc is musl or not
   -- 
   -- Test and benchmark options:
   -- 
   --   ARROW_BUILD_EXAMPLES=OFF [default=OFF]
   --       Build the Arrow examples
   --   ARROW_BUILD_TESTS=OFF [default=OFF]
   --       Build the Arrow googletest unit tests
   --   ARROW_ENABLE_TIMING_TESTS=ON [default=ON]
   --       Enable timing-sensitive tests
   --   ARROW_BUILD_INTEGRATION=OFF [default=OFF]
   --       Build the Arrow integration test executables
   --   ARROW_BUILD_BENCHMARKS=OFF [default=OFF]
   --       Build the Arrow micro benchmarks
   --   ARROW_BUILD_BENCHMARKS_REFERENCE=OFF [default=OFF]
   --       Build the Arrow micro reference benchmarks
   --   ARROW_BUILD_OPENMP_BENCHMARKS=OFF [default=OFF]
   --       Build the Arrow benchmarks that rely on OpenMP
   --   ARROW_BUILD_DETAILED_BENCHMARKS=OFF [default=OFF]
   --       Build benchmarks that do a longer exploration of performance
   --   ARROW_TEST_LINKAGE=static [default=shared|static]
   --       Linkage of Arrow libraries with unit tests executables.
   --   ARROW_FUZZING=OFF [default=OFF]
   --       Build Arrow Fuzzing executables
   --   ARROW_LARGE_MEMORY_TESTS=OFF [default=OFF]
   --       Enable unit tests which use large memory
   -- 
   -- Lint options:
   -- 
   --   ARROW_ONLY_LINT=OFF [default=OFF]
   --       Only define the lint and check-format targets
   --   ARROW_VERBOSE_LINT=OFF [default=OFF]
   --       If off, 'quiet' flags will be passed to linting tools
   --   ARROW_GENERATE_COVERAGE=OFF [default=OFF]
   --       Build with C++ code coverage enabled
   -- 
   -- Checks options:
   -- 
   --   ARROW_TEST_MEMCHECK=OFF [default=OFF]
   --       Run the test suite using valgrind --tool=memcheck
   --   ARROW_USE_ASAN=OFF [default=OFF]
   --       Enable Address Sanitizer checks
   --   ARROW_USE_TSAN=OFF [default=OFF]
   --       Enable Thread Sanitizer checks
   --   ARROW_USE_UBSAN=OFF [default=OFF]
   --       Enable Undefined Behavior sanitizer checks
   -- 
   -- Project component options:
   -- 
   --   ARROW_BUILD_UTILITIES=OFF [default=OFF]
   --       Build Arrow commandline utilities
   --   ARROW_COMPUTE=ON [default=OFF]
   --       Build the Arrow Compute Modules
   --   ARROW_CSV=ON [default=OFF]
   --       Build the Arrow CSV Parser Module
   --   ARROW_CUDA=OFF [default=OFF]
   --       Build the Arrow CUDA extensions (requires CUDA toolkit)
   --   ARROW_DATASET=ON [default=OFF]
   --       Build the Arrow Dataset Modules
   --   ARROW_FILESYSTEM=ON [default=OFF]
   --       Build the Arrow Filesystem Layer
   --   ARROW_FLIGHT=OFF [default=OFF]
   --       Build the Arrow Flight RPC System (requires GRPC, Protocol Buffers)
   --   ARROW_FLIGHT_SQL=OFF [default=OFF]
   --       Build the Arrow Flight SQL extension
   --   ARROW_GANDIVA=OFF [default=OFF]
   --       Build the Gandiva libraries
   --   ARROW_GCS=OFF [default=OFF]
   --       Build Arrow with GCS support (requires the GCloud SDK for C++)
   --   ARROW_HDFS=OFF [default=OFF]
   --       Build the Arrow HDFS bridge
   --   ARROW_IPC=ON [default=ON]
   --       Build the Arrow IPC extensions
   --   ARROW_JEMALLOC=OFF [default=ON]
   --       Build the Arrow jemalloc-based allocator
   --   ARROW_JSON=ON [default=OFF]
   --       Build Arrow with JSON support (requires RapidJSON)
   --   ARROW_MIMALLOC=ON [default=OFF]
   --       Build the Arrow mimalloc-based allocator
   --   ARROW_PARQUET=ON [default=OFF]
   --       Build the Parquet libraries
   --   ARROW_ORC=OFF [default=OFF]
   --       Build the Arrow ORC adapter
   --   ARROW_PLASMA=OFF [default=OFF]
   --       Build the plasma object store along with Arrow
   --   ARROW_PYTHON=OFF [default=OFF]
   --       Build some components needed by PyArrow.
   --       (This is a deprecated option. Use CMake presets instead.)
   --   ARROW_S3=OFF [default=OFF]
   --       Build Arrow with S3 support (requires the AWS SDK for C++)
   --   ARROW_SKYHOOK=OFF [default=OFF]
   --       Build the Skyhook libraries
   --   ARROW_SUBSTRAIT=OFF [default=OFF]
   --       Build the Arrow Substrait Consumer Module
   --   ARROW_TENSORFLOW=OFF [default=OFF]
   --       Build Arrow with TensorFlow support enabled
   --   ARROW_TESTING=OFF [default=OFF]
   --       Build the Arrow testing libraries
   -- 
   -- Thirdparty toolchain options:
   -- 
   --   ARROW_DEPENDENCY_SOURCE=BUNDLED [default=AUTO|BUNDLED|SYSTEM|CONDA|VCPKG|BREW]
   --       Method to use for acquiring arrow's build dependencies
   --   ARROW_VERBOSE_THIRDPARTY_BUILD=OFF [default=OFF]
   --       Show output from ExternalProjects rather than just logging to files
   --   ARROW_DEPENDENCY_USE_SHARED=ON [default=ON]
   --       Link to shared libraries
   --   ARROW_BOOST_USE_SHARED=OFF [default=ON]
   --       Rely on Boost shared libraries where relevant
   --   ARROW_BROTLI_USE_SHARED=ON [default=ON]
   --       Rely on Brotli shared libraries where relevant
   --   ARROW_BZ2_USE_SHARED=ON [default=ON]
   --       Rely on Bz2 shared libraries where relevant
   --   ARROW_GFLAGS_USE_SHARED=ON [default=ON]
   --       Rely on GFlags shared libraries where relevant
   --   ARROW_GRPC_USE_SHARED=ON [default=ON]
   --       Rely on gRPC shared libraries where relevant
   --   ARROW_JEMALLOC_USE_SHARED=ON [default=ON]
   --       Rely on jemalloc shared libraries where relevant
   --   ARROW_LZ4_USE_SHARED=ON [default=ON]
   --       Rely on lz4 shared libraries where relevant
   --   ARROW_OPENSSL_USE_SHARED=ON [default=ON]
   --       Rely on OpenSSL shared libraries where relevant
   --   ARROW_PROTOBUF_USE_SHARED=ON [default=ON]
   --       Rely on Protocol Buffers shared libraries where relevant
   --   ARROW_SNAPPY_USE_SHARED=ON [default=ON]
   --       Rely on snappy shared libraries where relevant
   --   ARROW_THRIFT_USE_SHARED=ON [default=ON]
   --       Rely on thrift shared libraries where relevant
   --   ARROW_UTF8PROC_USE_SHARED=ON [default=ON]
   --       Rely on utf8proc shared libraries where relevant
   --   ARROW_ZSTD_USE_SHARED=ON [default=ON]
   --       Rely on zstd shared libraries where relevant
   --   ARROW_USE_GLOG=OFF [default=OFF]
   --       Build libraries with glog support for pluggable logging
   --   ARROW_WITH_BACKTRACE=ON [default=ON]
   --       Build with backtrace support
   --   ARROW_WITH_OPENTELEMETRY=OFF [default=OFF]
   --       Build libraries with OpenTelemetry support for distributed tracing
   --   ARROW_WITH_BROTLI=OFF [default=OFF]
   --       Build with Brotli compression
   --   ARROW_WITH_BZ2=OFF [default=OFF]
   --       Build with BZ2 compression
   --   ARROW_WITH_LZ4=ON [default=OFF]
   --       Build with lz4 compression
   --   ARROW_WITH_SNAPPY=ON [default=OFF]
   --       Build with Snappy compression
   --   ARROW_WITH_ZLIB=OFF [default=OFF]
   --       Build with zlib compression
   --   ARROW_WITH_ZSTD=OFF [default=OFF]
   --       Build with zstd compression
   --   ARROW_WITH_UCX=OFF [default=OFF]
   --       Build with UCX transport for Arrow Flight
   --       (only used if ARROW_FLIGHT is ON)
   --   ARROW_WITH_UTF8PROC=ON [default=ON]
   --       Build with support for Unicode properties using the utf8proc library
   --       (only used if ARROW_COMPUTE is ON or ARROW_GANDIVA is ON)
   --   ARROW_WITH_RE2=ON [default=ON]
   --       Build with support for regular expressions using the re2 library
   --       (only used if ARROW_COMPUTE or ARROW_GANDIVA is ON)
   -- 
   -- Parquet options:
   -- 
   --   PARQUET_MINIMAL_DEPENDENCY=OFF [default=OFF]
   --       Depend only on Thirdparty headers to build libparquet.
   --       Always OFF if building binaries
   --   PARQUET_BUILD_EXECUTABLES=OFF [default=OFF]
   --       Build the Parquet executable CLI tools. Requires static libraries to be built.
   --   PARQUET_BUILD_EXAMPLES=OFF [default=OFF]
   --       Build the Parquet examples. Requires static libraries to be built.
   --   PARQUET_REQUIRE_ENCRYPTION=OFF [default=OFF]
   --       Build support for encryption. Fail if OpenSSL is not found
   -- 
   -- Gandiva options:
   -- 
   --   ARROW_GANDIVA_STATIC_LIBSTDCPP=OFF [default=OFF]
   --       Include -static-libstdc++ -static-libgcc when linking with
   --       Gandiva static libraries
   --   ARROW_GANDIVA_PC_CXX_FLAGS="" [default=""]
   --       Compiler flags to append when pre-compiling Gandiva operations
   -- 
   -- Advanced developer options:
   -- 
   --   ARROW_EXTRA_ERROR_CONTEXT=OFF [default=OFF]
   --       Compile with extra error context (line numbers, code)
   --   ARROW_OPTIONAL_INSTALL=OFF [default=OFF]
   --       If enabled install ONLY targets that have already been built. Please be
   --       advised that if this is enabled 'install' will fail silently on components
   --       that have not been built
   --   Outputting build configuration summary to /tmp/RtmpzZZyw3/file2a59389c27/cmake_summary.json
   -- Configuring done
   -- Generating done
   -- Build files have been written to: /tmp/RtmpzZZyw3/file2a59389c27
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -S/tmp/Rtmp0kQKHC/R.INSTALL1c11c1c3ba/arrow/tools/cpp -B/tmp/RtmpzZZyw3/file2a59389c27 --check-build-system CMakeFiles/Makefile.cmake 0
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E cmake_progress_start /tmp/RtmpzZZyw3/file2a59389c27/CMakeFiles /tmp/RtmpzZZyw3/file2a59389c27//CMakeFiles/progress.marks
   make  -f CMakeFiles/Makefile2 all
   make[1]: Entering directory '/tmp/RtmpzZZyw3/file2a59389c27'
   make  -f CMakeFiles/snappy_ep.dir/build.make CMakeFiles/snappy_ep.dir/depend
   make  -f CMakeFiles/boost_ep.dir/build.make CMakeFiles/boost_ep.dir/depend
   make  -f CMakeFiles/rapidjson_ep.dir/build.make CMakeFiles/rapidjson_ep.dir/depend
   make  -f CMakeFiles/mimalloc_ep.dir/build.make CMakeFiles/mimalloc_ep.dir/depend
   make  -f CMakeFiles/xsimd_ep.dir/build.make CMakeFiles/xsimd_ep.dir/depend
   make  -f CMakeFiles/lz4_ep.dir/build.make CMakeFiles/lz4_ep.dir/depend
   make[2]: Entering directory '/tmp/RtmpzZZyw3/file2a59389c27'
   cd /tmp/RtmpzZZyw3/file2a59389c27 && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/Rtmp0kQKHC/R.INSTALL1c11c1c3ba/arrow/tools/cpp /tmp/Rtmp0kQKHC/R.INSTALL1c11c1c3ba/arrow/tools/cpp /tmp/RtmpzZZyw3/file2a59389c27 /tmp/RtmpzZZyw3/file2a59389c27 /tmp/RtmpzZZyw3/file2a59389c27/CMakeFiles/boost_ep.dir/DependInfo.cmake --color=
   make[2]: Entering directory '/tmp/RtmpzZZyw3/file2a59389c27'
   cd /tmp/RtmpzZZyw3/file2a59389c27 && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/Rtmp0kQKHC/R.INSTALL1c11c1c3ba/arrow/tools/cpp /tmp/Rtmp0kQKHC/R.INSTALL1c11c1c3ba/arrow/tools/cpp /tmp/RtmpzZZyw3/file2a59389c27 /tmp/RtmpzZZyw3/file2a59389c27 /tmp/RtmpzZZyw3/file2a59389c27/CMakeFiles/snappy_ep.dir/DependInfo.cmake --color=
   make[2]: Entering directory '/tmp/RtmpzZZyw3/file2a59389c27'
   cd /tmp/RtmpzZZyw3/file2a59389c27 && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/Rtmp0kQKHC/R.INSTALL1c11c1c3ba/arrow/tools/cpp /tmp/Rtmp0kQKHC/R.INSTALL1c11c1c3ba/arrow/tools/cpp /tmp/RtmpzZZyw3/file2a59389c27 /tmp/RtmpzZZyw3/file2a59389c27 /tmp/RtmpzZZyw3/file2a59389c27/CMakeFiles/mimalloc_ep.dir/DependInfo.cmake --color=
   make[2]: Entering directory '/tmp/RtmpzZZyw3/file2a59389c27'
   cd /tmp/RtmpzZZyw3/file2a59389c27 && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/Rtmp0kQKHC/R.INSTALL1c11c1c3ba/arrow/tools/cpp /tmp/Rtmp0kQKHC/R.INSTALL1c11c1c3ba/arrow/tools/cpp /tmp/RtmpzZZyw3/file2a59389c27 /tmp/RtmpzZZyw3/file2a59389c27 /tmp/RtmpzZZyw3/file2a59389c27/CMakeFiles/rapidjson_ep.dir/DependInfo.cmake --color=
   make[2]: Entering directory '/tmp/RtmpzZZyw3/file2a59389c27'
   cd /tmp/RtmpzZZyw3/file2a59389c27 && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/Rtmp0kQKHC/R.INSTALL1c11c1c3ba/arrow/tools/cpp /tmp/Rtmp0kQKHC/R.INSTALL1c11c1c3ba/arrow/tools/cpp /tmp/RtmpzZZyw3/file2a59389c27 /tmp/RtmpzZZyw3/file2a59389c27 /tmp/RtmpzZZyw3/file2a59389c27/CMakeFiles/xsimd_ep.dir/DependInfo.cmake --color=
   make[2]: Entering directory '/tmp/RtmpzZZyw3/file2a59389c27'
   cd /tmp/RtmpzZZyw3/file2a59389c27 && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/Rtmp0kQKHC/R.INSTALL1c11c1c3ba/arrow/tools/cpp /tmp/Rtmp0kQKHC/R.INSTALL1c11c1c3ba/arrow/tools/cpp /tmp/RtmpzZZyw3/file2a59389c27 /tmp/RtmpzZZyw3/file2a59389c27 /tmp/RtmpzZZyw3/file2a59389c27/CMakeFiles/lz4_ep.dir/DependInfo.cmake --color=
   make[2]: Leaving directory '/tmp/RtmpzZZyw3/file2a59389c27'
   make[2]: Leaving directory '/tmp/RtmpzZZyw3/file2a59389c27'
   make  -f CMakeFiles/boost_ep.dir/build.make CMakeFiles/boost_ep.dir/build
   make  -f CMakeFiles/rapidjson_ep.dir/build.make CMakeFiles/rapidjson_ep.dir/build
   make[2]: Leaving directory '/tmp/RtmpzZZyw3/file2a59389c27'
   make[2]: Leaving directory '/tmp/RtmpzZZyw3/file2a59389c27'
   make  -f CMakeFiles/snappy_ep.dir/build.make CMakeFiles/snappy_ep.dir/build
   make[2]: Leaving directory '/tmp/RtmpzZZyw3/file2a59389c27'
   make  -f CMakeFiles/mimalloc_ep.dir/build.make CMakeFiles/mimalloc_ep.dir/build
   make  -f CMakeFiles/xsimd_ep.dir/build.make CMakeFiles/xsimd_ep.dir/build
   make[2]: Leaving directory '/tmp/RtmpzZZyw3/file2a59389c27'
   make  -f CMakeFiles/lz4_ep.dir/build.make CMakeFiles/lz4_ep.dir/build
   make[2]: Entering directory '/tmp/RtmpzZZyw3/file2a59389c27'
   make[2]: Entering directory '/tmp/RtmpzZZyw3/file2a59389c27'
   make[2]: Entering directory '/tmp/RtmpzZZyw3/file2a59389c27'
   make[2]: Entering directory '/tmp/RtmpzZZyw3/file2a59389c27'
   make[2]: Entering directory '/tmp/RtmpzZZyw3/file2a59389c27'
   make[2]: Entering directory '/tmp/RtmpzZZyw3/file2a59389c27'
   [  0%] Creating directories for 'boost_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep
   [  0%] Creating directories for 'rapidjson_ep'
   [  0%] Creating directories for 'snappy_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/src/rapidjson_ep
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src/snappy_ep
   [  0%] Creating directories for 'xsimd_ep'
   [  0%] Creating directories for 'mimalloc_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/src/xsimd_ep
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src/mimalloc_ep
   [  1%] Creating directories for 'lz4_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep-build
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/src/rapidjson_ep-build
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src/lz4_ep
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src/snappy_ep
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/src/xsimd_ep-build
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src/mimalloc_ep-build
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep/src/snappy_ep-install
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src/lz4_ep-build
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/tmp
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/tmp
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-install
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/tmp
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/tmp
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/tmp
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep-stamp
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/src/rapidjson_ep-stamp
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/tmp
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src/snappy_ep-stamp
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src/mimalloc_ep-stamp
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/src/xsimd_ep-stamp
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/src
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src/lz4_ep-stamp
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep-stamp
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/src/rapidjson_ep-stamp
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src/snappy_ep-stamp
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/src
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src/mimalloc_ep-stamp
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep-stamp/boost_ep-mkdir
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/src/rapidjson_ep-stamp/rapidjson_ep-mkdir
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src/snappy_ep-stamp/snappy_ep-mkdir
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/src/xsimd_ep-stamp
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src/mimalloc_ep-stamp/mimalloc_ep-mkdir
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src/lz4_ep-stamp
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/src/xsimd_ep-stamp/xsimd_ep-mkdir
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src/lz4_ep-stamp/lz4_ep-mkdir
   [  1%] Performing download step (download, verify and extract) for 'boost_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -P /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep-stamp/boost_ep-download-RELEASE.cmake
   [  1%] Performing download step (download, verify and extract) for 'rapidjson_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/src && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -P /tmp/RtmpzZZyw3/file2a59389c27/src/rapidjson_ep-stamp/rapidjson_ep-download-RELEASE.cmake
   [  1%] Performing download step (download, verify and extract) for 'mimalloc_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -P /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src/mimalloc_ep-stamp/mimalloc_ep-download-RELEASE.cmake
   [  1%] Performing download step (download, verify and extract) for 'snappy_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -P /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src/snappy_ep-stamp/snappy_ep-download-RELEASE.cmake
   [  1%] Performing download step (download, verify and extract) for 'xsimd_ep'
   [  1%] Performing download step (download, verify and extract) for 'lz4_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/src && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -P /tmp/RtmpzZZyw3/file2a59389c27/src/xsimd_ep-stamp/xsimd_ep-download-RELEASE.cmake
   cd /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -P /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src/lz4_ep-stamp/lz4_ep-download-RELEASE.cmake
   -- lz4_ep download command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src/lz4_ep-stamp/lz4_ep-download-*.log
   cd /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src/lz4_ep-stamp/lz4_ep-download
   -- xsimd_ep download command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/src/xsimd_ep-stamp/xsimd_ep-download-*.log
   cd /tmp/RtmpzZZyw3/file2a59389c27/src && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/src/xsimd_ep-stamp/xsimd_ep-download
   -- mimalloc_ep download command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src/mimalloc_ep-stamp/mimalloc_ep-download-*.log
   cd /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src/mimalloc_ep-stamp/mimalloc_ep-download
   [  1%] No update step for 'lz4_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E echo_append
   [  2%] No update step for 'xsimd_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E echo_append
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src/lz4_ep-stamp/lz4_ep-update
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/src/xsimd_ep-stamp/xsimd_ep-update
   [  2%] No update step for 'mimalloc_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E echo_append
   [  2%] No patch step for 'lz4_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E echo_append
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src/mimalloc_ep-stamp/mimalloc_ep-update
   [  2%] No patch step for 'xsimd_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E echo_append
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src/lz4_ep-stamp/lz4_ep-patch
   -- rapidjson_ep download command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/src/rapidjson_ep-stamp/rapidjson_ep-download-*.log
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/src/xsimd_ep-stamp/xsimd_ep-patch
   cd /tmp/RtmpzZZyw3/file2a59389c27/src && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/src/rapidjson_ep-stamp/rapidjson_ep-download
   [  2%] No patch step for 'mimalloc_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E echo_append
   [  2%] Performing configure step for 'lz4_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src/lz4_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -P /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src/lz4_ep-stamp/lz4_ep-configure-RELEASE.cmake
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src/mimalloc_ep-stamp/mimalloc_ep-patch
   [  2%] Performing configure step for 'xsimd_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/src/xsimd_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -P /tmp/RtmpzZZyw3/file2a59389c27/src/xsimd_ep-stamp/xsimd_ep-configure-RELEASE.cmake
   [  2%] No update step for 'rapidjson_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E echo_append
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/src/rapidjson_ep-stamp/rapidjson_ep-update
   -- snappy_ep download command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src/snappy_ep-stamp/snappy_ep-download-*.log
   [  2%] Performing configure step for 'mimalloc_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src/snappy_ep-stamp/snappy_ep-download
   cd /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src/mimalloc_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -P /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src/mimalloc_ep-stamp/mimalloc_ep-configure-RELEASE.cmake
   [  2%] No patch step for 'rapidjson_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E echo_append
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/src/rapidjson_ep-stamp/rapidjson_ep-patch
   [  2%] No update step for 'snappy_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E echo_append
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src/snappy_ep-stamp/snappy_ep-update
   [  2%] Performing configure step for 'rapidjson_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/src/rapidjson_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -P /tmp/RtmpzZZyw3/file2a59389c27/src/rapidjson_ep-stamp/rapidjson_ep-configure-RELEASE.cmake
   [  3%] No patch step for 'snappy_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E echo_append
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src/snappy_ep-stamp/snappy_ep-patch
   [  4%] Performing configure step for 'snappy_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src/snappy_ep && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -P /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src/snappy_ep-stamp/snappy_ep-configure-RELEASE.cmake
   -- rapidjson_ep configure command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/src/rapidjson_ep-stamp/rapidjson_ep-configure-*.log
   cd /tmp/RtmpzZZyw3/file2a59389c27/src/rapidjson_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/src/rapidjson_ep-stamp/rapidjson_ep-configure
   [  4%] Performing build step for 'rapidjson_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/src/rapidjson_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -Dmake=make -P /tmp/RtmpzZZyw3/file2a59389c27/src/rapidjson_ep-stamp/rapidjson_ep-build-RELEASE.cmake
   -- rapidjson_ep build command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/src/rapidjson_ep-stamp/rapidjson_ep-build-*.log
   cd /tmp/RtmpzZZyw3/file2a59389c27/src/rapidjson_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/src/rapidjson_ep-stamp/rapidjson_ep-build
   [  5%] Performing install step for 'rapidjson_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/src/rapidjson_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -Dmake=make -P /tmp/RtmpzZZyw3/file2a59389c27/src/rapidjson_ep-stamp/rapidjson_ep-install-RELEASE.cmake
   -- rapidjson_ep install command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/src/rapidjson_ep-stamp/rapidjson_ep-install-*.log
   cd /tmp/RtmpzZZyw3/file2a59389c27/src/rapidjson_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/src/rapidjson_ep-stamp/rapidjson_ep-install
   [  6%] Completed 'rapidjson_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/CMakeFiles
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/CMakeFiles/rapidjson_ep-complete
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/src/rapidjson_ep-stamp/rapidjson_ep-done
   -- boost_ep download command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep-stamp/boost_ep-download-*.log
   cd /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep-stamp/boost_ep-download
   make[2]: Leaving directory '/tmp/RtmpzZZyw3/file2a59389c27'
   [  6%] Built target rapidjson_ep
   make  -f CMakeFiles/re2_ep.dir/build.make CMakeFiles/re2_ep.dir/depend
   make[2]: Entering directory '/tmp/RtmpzZZyw3/file2a59389c27'
   cd /tmp/RtmpzZZyw3/file2a59389c27 && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/Rtmp0kQKHC/R.INSTALL1c11c1c3ba/arrow/tools/cpp /tmp/Rtmp0kQKHC/R.INSTALL1c11c1c3ba/arrow/tools/cpp /tmp/RtmpzZZyw3/file2a59389c27 /tmp/RtmpzZZyw3/file2a59389c27 /tmp/RtmpzZZyw3/file2a59389c27/CMakeFiles/re2_ep.dir/DependInfo.cmake --color=
   [  6%] No update step for 'boost_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E echo_append
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep-stamp/boost_ep-update
   make[2]: Leaving directory '/tmp/RtmpzZZyw3/file2a59389c27'
   make  -f CMakeFiles/re2_ep.dir/build.make CMakeFiles/re2_ep.dir/build
   make[2]: Entering directory '/tmp/RtmpzZZyw3/file2a59389c27'
   [  7%] No patch step for 'boost_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E echo_append
   [  7%] Creating directories for 're2_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/re2_ep-prefix/src/re2_ep
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep-stamp/boost_ep-patch
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/re2_ep-prefix/src/re2_ep-build
   -- xsimd_ep configure command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/src/xsimd_ep-stamp/xsimd_ep-configure-*.log
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/re2_ep-install
   cd /tmp/RtmpzZZyw3/file2a59389c27/src/xsimd_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/src/xsimd_ep-stamp/xsimd_ep-configure
   [  8%] No configure step for 'boost_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E echo_append
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/re2_ep-prefix/tmp
   cd /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep-stamp/boost_ep-configure
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/re2_ep-prefix/src/re2_ep-stamp
   [  8%] Performing build step for 'xsimd_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/re2_ep-prefix/src
   cd /tmp/RtmpzZZyw3/file2a59389c27/src/xsimd_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -Dmake=make -P /tmp/RtmpzZZyw3/file2a59389c27/src/xsimd_ep-stamp/xsimd_ep-build-RELEASE.cmake
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/re2_ep-prefix/src/re2_ep-stamp
   [  8%] No build step for 'boost_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E echo_append
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/re2_ep-prefix/src/re2_ep-stamp/re2_ep-mkdir
   cd /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep-stamp/boost_ep-build
   -- mimalloc_ep configure command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src/mimalloc_ep-stamp/mimalloc_ep-configure-*.log
   cd /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src/mimalloc_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src/mimalloc_ep-stamp/mimalloc_ep-configure
   [  9%] Performing download step (download, verify and extract) for 're2_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/re2_ep-prefix/src && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -P /tmp/RtmpzZZyw3/file2a59389c27/re2_ep-prefix/src/re2_ep-stamp/re2_ep-download-RELEASE.cmake
   [  9%] No install step for 'boost_ep'
   [ 10%] Performing build step for 'mimalloc_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E echo_append
   cd /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src/mimalloc_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -Dmake=make -P /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src/mimalloc_ep-stamp/mimalloc_ep-build-RELEASE.cmake
   -- xsimd_ep build command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/src/xsimd_ep-stamp/xsimd_ep-build-*.log
   cd /tmp/RtmpzZZyw3/file2a59389c27/src/xsimd_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/src/xsimd_ep-stamp/xsimd_ep-build
   cd /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep-stamp/boost_ep-install
   [ 11%] Performing install step for 'xsimd_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/src/xsimd_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -Dmake=make -P /tmp/RtmpzZZyw3/file2a59389c27/src/xsimd_ep-stamp/xsimd_ep-install-RELEASE.cmake
   [ 11%] Completed 'boost_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/CMakeFiles
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/CMakeFiles/boost_ep-complete
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep-stamp/boost_ep-done
   make[2]: Leaving directory '/tmp/RtmpzZZyw3/file2a59389c27'
   [ 11%] Built target boost_ep
   make  -f CMakeFiles/utf8proc_ep.dir/build.make CMakeFiles/utf8proc_ep.dir/depend
   make[2]: Entering directory '/tmp/RtmpzZZyw3/file2a59389c27'
   cd /tmp/RtmpzZZyw3/file2a59389c27 && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/Rtmp0kQKHC/R.INSTALL1c11c1c3ba/arrow/tools/cpp /tmp/Rtmp0kQKHC/R.INSTALL1c11c1c3ba/arrow/tools/cpp /tmp/RtmpzZZyw3/file2a59389c27 /tmp/RtmpzZZyw3/file2a59389c27 /tmp/RtmpzZZyw3/file2a59389c27/CMakeFiles/utf8proc_ep.dir/DependInfo.cmake --color=
   make[2]: Leaving directory '/tmp/RtmpzZZyw3/file2a59389c27'
   make  -f CMakeFiles/utf8proc_ep.dir/build.make CMakeFiles/utf8proc_ep.dir/build
   make[2]: Entering directory '/tmp/RtmpzZZyw3/file2a59389c27'
   [ 12%] Creating directories for 'utf8proc_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src/utf8proc_ep
   -- xsimd_ep install command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/src/xsimd_ep-stamp/xsimd_ep-install-*.log
   cd /tmp/RtmpzZZyw3/file2a59389c27/src/xsimd_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/src/xsimd_ep-stamp/xsimd_ep-install
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src/utf8proc_ep-build
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-install
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/tmp
   [ 13%] Completed 'xsimd_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/CMakeFiles
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src/utf8proc_ep-stamp
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/CMakeFiles/xsimd_ep-complete
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/src/xsimd_ep-stamp/xsimd_ep-done
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src/utf8proc_ep-stamp
   make[2]: Leaving directory '/tmp/RtmpzZZyw3/file2a59389c27'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src/utf8proc_ep-stamp/utf8proc_ep-mkdir
   [ 13%] Built target xsimd_ep
   [ 13%] Performing download step (download, verify and extract) for 'utf8proc_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -P /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src/utf8proc_ep-stamp/utf8proc_ep-download-RELEASE.cmake
   -- re2_ep download command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/re2_ep-prefix/src/re2_ep-stamp/re2_ep-download-*.log
   cd /tmp/RtmpzZZyw3/file2a59389c27/re2_ep-prefix/src && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/re2_ep-prefix/src/re2_ep-stamp/re2_ep-download
   [ 14%] No update step for 're2_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E echo_append
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/re2_ep-prefix/src/re2_ep-stamp/re2_ep-update
   [ 14%] No patch step for 're2_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E echo_append
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/re2_ep-prefix/src/re2_ep-stamp/re2_ep-patch
   [ 14%] Performing configure step for 're2_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/re2_ep-prefix/src/re2_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -P /tmp/RtmpzZZyw3/file2a59389c27/re2_ep-prefix/src/re2_ep-stamp/re2_ep-configure-RELEASE.cmake
   -- utf8proc_ep download command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src/utf8proc_ep-stamp/utf8proc_ep-download-*.log
   cd /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src/utf8proc_ep-stamp/utf8proc_ep-download
   [ 14%] No update step for 'utf8proc_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E echo_append
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src/utf8proc_ep-stamp/utf8proc_ep-update
   [ 14%] No patch step for 'utf8proc_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E echo_append
   make  -f CMakeFiles/thrift_ep.dir/build.make CMakeFiles/thrift_ep.dir/depend
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src/utf8proc_ep-stamp/utf8proc_ep-patch
   make[2]: Entering directory '/tmp/RtmpzZZyw3/file2a59389c27'
   cd /tmp/RtmpzZZyw3/file2a59389c27 && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/Rtmp0kQKHC/R.INSTALL1c11c1c3ba/arrow/tools/cpp /tmp/Rtmp0kQKHC/R.INSTALL1c11c1c3ba/arrow/tools/cpp /tmp/RtmpzZZyw3/file2a59389c27 /tmp/RtmpzZZyw3/file2a59389c27 /tmp/RtmpzZZyw3/file2a59389c27/CMakeFiles/thrift_ep.dir/DependInfo.cmake --color=
   make[2]: Leaving directory '/tmp/RtmpzZZyw3/file2a59389c27'
   make  -f CMakeFiles/thrift_ep.dir/build.make CMakeFiles/thrift_ep.dir/build
   [ 14%] Performing configure step for 'utf8proc_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src/utf8proc_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -P /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src/utf8proc_ep-stamp/utf8proc_ep-configure-RELEASE.cmake
   make[2]: Entering directory '/tmp/RtmpzZZyw3/file2a59389c27'
   [ 15%] Creating directories for 'thrift_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/tmp
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-stamp
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-stamp
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-stamp/thrift_ep-mkdir
   [ 15%] Performing download step (download, verify and extract) for 'thrift_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -P /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-stamp/thrift_ep-download-RELEASE.cmake
   -- utf8proc_ep configure command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src/utf8proc_ep-stamp/utf8proc_ep-configure-*.log
   cd /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src/utf8proc_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src/utf8proc_ep-stamp/utf8proc_ep-configure
   [ 16%] Performing build step for 'utf8proc_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src/utf8proc_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -Dmake=make -P /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src/utf8proc_ep-stamp/utf8proc_ep-build-RELEASE.cmake
   -- thrift_ep download command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-stamp/thrift_ep-download-*.log
   cd /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-stamp/thrift_ep-download
   [ 16%] No update step for 'thrift_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E echo_append
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-stamp/thrift_ep-update
   [ 16%] No patch step for 'thrift_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E echo_append
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-stamp/thrift_ep-patch
   [ 17%] Performing configure step for 'thrift_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -P /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-stamp/thrift_ep-configure-RELEASE.cmake
   -- re2_ep configure command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/re2_ep-prefix/src/re2_ep-stamp/re2_ep-configure-*.log
   cd /tmp/RtmpzZZyw3/file2a59389c27/re2_ep-prefix/src/re2_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/re2_ep-prefix/src/re2_ep-stamp/re2_ep-configure
   [ 17%] Performing build step for 're2_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/re2_ep-prefix/src/re2_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -Dmake=make -P /tmp/RtmpzZZyw3/file2a59389c27/re2_ep-prefix/src/re2_ep-stamp/re2_ep-build-RELEASE.cmake
   -- lz4_ep configure command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src/lz4_ep-stamp/lz4_ep-configure-*.log
   cd /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src/lz4_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src/lz4_ep-stamp/lz4_ep-configure
   [ 18%] Performing build step for 'lz4_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src/lz4_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -Dmake=make -P /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src/lz4_ep-stamp/lz4_ep-build-RELEASE.cmake
   -- utf8proc_ep build command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src/utf8proc_ep-stamp/utf8proc_ep-build-*.log
   cd /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src/utf8proc_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src/utf8proc_ep-stamp/utf8proc_ep-build
   [ 18%] Performing install step for 'utf8proc_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src/utf8proc_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -Dmake=make -P /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src/utf8proc_ep-stamp/utf8proc_ep-install-RELEASE.cmake
   -- utf8proc_ep install command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src/utf8proc_ep-stamp/utf8proc_ep-install-*.log
   cd /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src/utf8proc_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src/utf8proc_ep-stamp/utf8proc_ep-install
   [ 18%] Completed 'utf8proc_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/CMakeFiles
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/CMakeFiles/utf8proc_ep-complete
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/utf8proc_ep-prefix/src/utf8proc_ep-stamp/utf8proc_ep-done
   make[2]: Leaving directory '/tmp/RtmpzZZyw3/file2a59389c27'
   [ 18%] Built target utf8proc_ep
   -- snappy_ep configure command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src/snappy_ep-stamp/snappy_ep-configure-*.log
   cd /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src/snappy_ep && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src/snappy_ep-stamp/snappy_ep-configure
   [ 18%] Performing build step for 'snappy_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src/snappy_ep && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -Dmake=make -P /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src/snappy_ep-stamp/snappy_ep-build-RELEASE.cmake
   -- mimalloc_ep build command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src/mimalloc_ep-stamp/mimalloc_ep-build-*.log
   cd /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src/mimalloc_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src/mimalloc_ep-stamp/mimalloc_ep-build
   [ 19%] Performing install step for 'mimalloc_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src/mimalloc_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -Dmake=make -P /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src/mimalloc_ep-stamp/mimalloc_ep-install-RELEASE.cmake
   -- mimalloc_ep install command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src/mimalloc_ep-stamp/mimalloc_ep-install-*.log
   cd /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src/mimalloc_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src/mimalloc_ep-stamp/mimalloc_ep-install
   [ 19%] Completed 'mimalloc_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/CMakeFiles
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/CMakeFiles/mimalloc_ep-complete
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/mimalloc_ep-prefix/src/mimalloc_ep-stamp/mimalloc_ep-done
   make[2]: Leaving directory '/tmp/RtmpzZZyw3/file2a59389c27'
   [ 19%] Built target mimalloc_ep
   -- lz4_ep build command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src/lz4_ep-stamp/lz4_ep-build-*.log
   cd /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src/lz4_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src/lz4_ep-stamp/lz4_ep-build
   [ 19%] Performing install step for 'lz4_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src/lz4_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -Dmake=make -P /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src/lz4_ep-stamp/lz4_ep-install-RELEASE.cmake
   -- lz4_ep install command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src/lz4_ep-stamp/lz4_ep-install-*.log
   cd /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src/lz4_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src/lz4_ep-stamp/lz4_ep-install
   [ 19%] Completed 'lz4_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/CMakeFiles
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/CMakeFiles/lz4_ep-complete
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/lz4_ep-prefix/src/lz4_ep-stamp/lz4_ep-done
   make[2]: Leaving directory '/tmp/RtmpzZZyw3/file2a59389c27'
   [ 19%] Built target lz4_ep
   -- snappy_ep build command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src/snappy_ep-stamp/snappy_ep-build-*.log
   cd /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src/snappy_ep && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src/snappy_ep-stamp/snappy_ep-build
   [ 19%] Performing install step for 'snappy_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src/snappy_ep && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -Dmake=make -P /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src/snappy_ep-stamp/snappy_ep-install-RELEASE.cmake
   -- snappy_ep install command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src/snappy_ep-stamp/snappy_ep-install-*.log
   cd /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src/snappy_ep && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src/snappy_ep-stamp/snappy_ep-install
   [ 19%] Completed 'snappy_ep'
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E make_directory /tmp/RtmpzZZyw3/file2a59389c27/CMakeFiles
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/CMakeFiles/snappy_ep-complete
   /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/snappy_ep-prefix/src/snappy_ep-stamp/snappy_ep-done
   make[2]: Leaving directory '/tmp/RtmpzZZyw3/file2a59389c27'
   [ 19%] Built target snappy_ep
   -- thrift_ep configure command succeeded.  See also /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-stamp/thrift_ep-configure-*.log
   cd /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -E touch /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-stamp/thrift_ep-configure
   [ 19%] Performing build step for 'thrift_ep'
   cd /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build && /tmp/RtmpzZZyw3/file2a52359cdad/cmake-3.21.4-linux-x86_64/bin/cmake -Dmake=make -P /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-stamp/thrift_ep-build-RELEASE.cmake
   -- stdout output is:
   ...skipping to end...
   yw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src -isystem /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep -O3 -Wall -pedantic -frtti -Qunused-arguments -fcolor-diagnostics -fPIC -Wno-deprecated-register -O3 -DNDEBUG -O2 -std=c++17 -MD -MT lib/cpp/CMakeFiles/thrift.dir/src/thrift/protocol/TBase64Utils.cpp.o -MF CMakeFiles/thrift.dir/src/thrift/protocol/TBase64Utils.cpp.o.d -o CMakeFiles/thrift.dir/src/thrift/protocol/TBase64Utils.cpp.o -c /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src/thrift/protocol/TBase64Utils.cpp
   [ 25%] Building CXX object lib/cpp/CMakeFiles/thrift.dir/src/thrift/protocol/TDebugProtocol.cpp.o
   cd /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build/lib/cpp && /usr/bin/clang++-16 -stdlib=libc++ -std=gnu++17 -DBOOST_ALL_DYN_LINK -DBOOST_TEST_DYN_LINK -DTHRIFT_STATIC_DEFINE -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build/lib/cpp -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src -isystem /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep -O3 -Wall -pedantic -frtti -Qunused-arguments -fcolor-diagnostics -fPIC -Wno-deprecated-register -O3 -DNDEBUG -O2 -std=c++17 -MD -MT lib/cpp/CMakeFiles/thrift.dir/src/thrift/protocol/TDebugProtocol.cpp.o -MF CMakeFiles/thrift.dir/src/thrift/protocol/TDebugProtocol.cpp.o.d -o CMakeFiles/thrift.dir/src/thrift/protocol/TDebugProtocol.cpp.o -c /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix
 /src/thrift_ep/lib/cpp/src/thrift/protocol/TDebugProtocol.cpp
   [ 27%] Building CXX object lib/cpp/CMakeFiles/thrift.dir/src/thrift/protocol/TJSONProtocol.cpp.o
   cd /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build/lib/cpp && /usr/bin/clang++-16 -stdlib=libc++ -std=gnu++17 -DBOOST_ALL_DYN_LINK -DBOOST_TEST_DYN_LINK -DTHRIFT_STATIC_DEFINE -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build/lib/cpp -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src -isystem /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep -O3 -Wall -pedantic -frtti -Qunused-arguments -fcolor-diagnostics -fPIC -Wno-deprecated-register -O3 -DNDEBUG -O2 -std=c++17 -MD -MT lib/cpp/CMakeFiles/thrift.dir/src/thrift/protocol/TJSONProtocol.cpp.o -MF CMakeFiles/thrift.dir/src/thrift/protocol/TJSONProtocol.cpp.o.d -o CMakeFiles/thrift.dir/src/thrift/protocol/TJSONProtocol.cpp.o -c /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/sr
 c/thrift_ep/lib/cpp/src/thrift/protocol/TJSONProtocol.cpp
   [ 30%] Building CXX object lib/cpp/CMakeFiles/thrift.dir/src/thrift/protocol/TMultiplexedProtocol.cpp.o
   cd /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build/lib/cpp && /usr/bin/clang++-16 -stdlib=libc++ -std=gnu++17 -DBOOST_ALL_DYN_LINK -DBOOST_TEST_DYN_LINK -DTHRIFT_STATIC_DEFINE -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build/lib/cpp -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src -isystem /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep -O3 -Wall -pedantic -frtti -Qunused-arguments -fcolor-diagnostics -fPIC -Wno-deprecated-register -O3 -DNDEBUG -O2 -std=c++17 -MD -MT lib/cpp/CMakeFiles/thrift.dir/src/thrift/protocol/TMultiplexedProtocol.cpp.o -MF CMakeFiles/thrift.dir/src/thrift/protocol/TMultiplexedProtocol.cpp.o.d -o CMakeFiles/thrift.dir/src/thrift/protocol/TMultiplexedProtocol.cpp.o -c /tmp/RtmpzZZyw3/file2a59389c2
 7/thrift_ep-prefix/src/thrift_ep/lib/cpp/src/thrift/protocol/TMultiplexedProtocol.cpp
   [ 32%] Building CXX object lib/cpp/CMakeFiles/thrift.dir/src/thrift/protocol/TProtocol.cpp.o
   cd /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build/lib/cpp && /usr/bin/clang++-16 -stdlib=libc++ -std=gnu++17 -DBOOST_ALL_DYN_LINK -DBOOST_TEST_DYN_LINK -DTHRIFT_STATIC_DEFINE -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build/lib/cpp -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src -isystem /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep -O3 -Wall -pedantic -frtti -Qunused-arguments -fcolor-diagnostics -fPIC -Wno-deprecated-register -O3 -DNDEBUG -O2 -std=c++17 -MD -MT lib/cpp/CMakeFiles/thrift.dir/src/thrift/protocol/TProtocol.cpp.o -MF CMakeFiles/thrift.dir/src/thrift/protocol/TProtocol.cpp.o.d -o CMakeFiles/thrift.dir/src/thrift/protocol/TProtocol.cpp.o -c /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/
 lib/cpp/src/thrift/protocol/TProtocol.cpp
   [ 35%] Building CXX object lib/cpp/CMakeFiles/thrift.dir/src/thrift/transport/TTransportException.cpp.o
   cd /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build/lib/cpp && /usr/bin/clang++-16 -stdlib=libc++ -std=gnu++17 -DBOOST_ALL_DYN_LINK -DBOOST_TEST_DYN_LINK -DTHRIFT_STATIC_DEFINE -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build/lib/cpp -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src -isystem /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep -O3 -Wall -pedantic -frtti -Qunused-arguments -fcolor-diagnostics -fPIC -Wno-deprecated-register -O3 -DNDEBUG -O2 -std=c++17 -MD -MT lib/cpp/CMakeFiles/thrift.dir/src/thrift/transport/TTransportException.cpp.o -MF CMakeFiles/thrift.dir/src/thrift/transport/TTransportException.cpp.o.d -o CMakeFiles/thrift.dir/src/thrift/transport/TTransportException.cpp.o -c /tmp/RtmpzZZyw3/file2a59389c2
 7/thrift_ep-prefix/src/thrift_ep/lib/cpp/src/thrift/transport/TTransportException.cpp
   [ 37%] Building CXX object lib/cpp/CMakeFiles/thrift.dir/src/thrift/transport/TFDTransport.cpp.o
   cd /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build/lib/cpp && /usr/bin/clang++-16 -stdlib=libc++ -std=gnu++17 -DBOOST_ALL_DYN_LINK -DBOOST_TEST_DYN_LINK -DTHRIFT_STATIC_DEFINE -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build/lib/cpp -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src -isystem /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep -O3 -Wall -pedantic -frtti -Qunused-arguments -fcolor-diagnostics -fPIC -Wno-deprecated-register -O3 -DNDEBUG -O2 -std=c++17 -MD -MT lib/cpp/CMakeFiles/thrift.dir/src/thrift/transport/TFDTransport.cpp.o -MF CMakeFiles/thrift.dir/src/thrift/transport/TFDTransport.cpp.o.d -o CMakeFiles/thrift.dir/src/thrift/transport/TFDTransport.cpp.o -c /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/sr
 c/thrift_ep/lib/cpp/src/thrift/transport/TFDTransport.cpp
   [ 40%] Building CXX object lib/cpp/CMakeFiles/thrift.dir/src/thrift/transport/TSimpleFileTransport.cpp.o
   cd /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build/lib/cpp && /usr/bin/clang++-16 -stdlib=libc++ -std=gnu++17 -DBOOST_ALL_DYN_LINK -DBOOST_TEST_DYN_LINK -DTHRIFT_STATIC_DEFINE -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build/lib/cpp -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src -isystem /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep -O3 -Wall -pedantic -frtti -Qunused-arguments -fcolor-diagnostics -fPIC -Wno-deprecated-register -O3 -DNDEBUG -O2 -std=c++17 -MD -MT lib/cpp/CMakeFiles/thrift.dir/src/thrift/transport/TSimpleFileTransport.cpp.o -MF CMakeFiles/thrift.dir/src/thrift/transport/TSimpleFileTransport.cpp.o.d -o CMakeFiles/thrift.dir/src/thrift/transport/TSimpleFileTransport.cpp.o -c /tmp/RtmpzZZyw3/file2a5938
 9c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src/thrift/transport/TSimpleFileTransport.cpp
   [ 42%] Building CXX object lib/cpp/CMakeFiles/thrift.dir/src/thrift/transport/THttpTransport.cpp.o
   cd /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build/lib/cpp && /usr/bin/clang++-16 -stdlib=libc++ -std=gnu++17 -DBOOST_ALL_DYN_LINK -DBOOST_TEST_DYN_LINK -DTHRIFT_STATIC_DEFINE -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build/lib/cpp -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build -I/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src -isystem /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep -O3 -Wall -pedantic -frtti -Qunused-arguments -fcolor-diagnostics -fPIC -Wno-deprecated-register -O3 -DNDEBUG -O2 -std=c++17 -MD -MT lib/cpp/CMakeFiles/thrift.dir/src/thrift/transport/THttpTransport.cpp.o -MF CMakeFiles/thrift.dir/src/thrift/transport/THttpTransport.cpp.o.d -o CMakeFiles/thrift.dir/src/thrift/transport/THttpTransport.cpp.o -c /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-pre
 fix/src/thrift_ep/lib/cpp/src/thrift/transport/THttpTransport.cpp
   make[5]: Leaving directory '/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build'
   make[4]: Leaving directory '/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build'
   make[3]: Leaving directory '/tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep-build'
   
   -- stderr output is:
   ...skipping to end...
   ib/cpp/src/thrift/protocol/TProtocol.h:568:16: note: overridden virtual function is here
     virtual void checkReadBytesAvailable(TMap& map)
                  ^
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src/thrift/protocol/TJSONProtocol.cpp:22:
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep/boost/locale.hpp:20:
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep/boost/locale/gnu_gettext.hpp:12:
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep/boost/function.hpp:30:
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep/boost/function/detail/prologue.hpp:17:
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep/boost/function/function_base.hpp:21:
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep/boost/type_index.hpp:29:
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep/boost/type_index/stl_type_index.hpp:47:
   /tmp/RtmpzZZyw3/file2a59389c27/boost_ep-prefix/src/boost_ep/boost/container_hash/hash.hpp:131:33: error: no template named 'unary_function' in namespace 'std'; did you mean '__unary_function'?
           struct hash_base : std::unary_function<T, std::size_t> {};
                              ~~~~~^
   /usr/lib/llvm-16/bin/../include/c++/v1/__functional/unary_function.h:46:1: note: '__unary_function' declared here
   using __unary_function = __unary_function_keep_layout_base<_Arg, _Result>;
   ^
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src/thrift/protocol/TProtocol.cpp:20:
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src/thrift/protocol/TProtocol.h:28:
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src/thrift/transport/TTransport.h:23:
   /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src/thrift/Thrift.h:54:19: warning: 'iterator<std::forward_iterator_tag, std::pair<int, const char *>>' is deprecated [-Wdeprecated-declarations]
       : public std::iterator<std::forward_iterator_tag, std::pair<int, const char*> > {
                     ^
   /usr/lib/llvm-16/bin/../include/c++/v1/__iterator/iterator.h:24:29: note: 'iterator<std::forward_iterator_tag, std::pair<int, const char *>>' has been explicitly marked deprecated here
   struct _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX17 iterator
                               ^
   /usr/lib/llvm-16/bin/../include/c++/v1/__config:798:41: note: expanded from macro '_LIBCPP_DEPRECATED_IN_CXX17'
   #    define _LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_DEPRECATED
                                           ^
   /usr/lib/llvm-16/bin/../include/c++/v1/__config:771:49: note: expanded from macro '_LIBCPP_DEPRECATED'
   #      define _LIBCPP_DEPRECATED __attribute__((deprecated))
                                                   ^
   1 warning generated.
   1 warning generated.
   1 warning generated.
   5 warnings and 1 error generated.
   make[5]: *** [lib/cpp/CMakeFiles/thrift.dir/build.make:216: lib/cpp/CMakeFiles/thrift.dir/src/thrift/protocol/TJSONProtocol.cpp.o] Error 1
   make[5]: *** Waiting for unfinished jobs....
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src/thrift/transport/TFDTransport.cpp:23:
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src/thrift/transport/TFDTransport.h:28:
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src/thrift/transport/TTransport.h:23:
   /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src/thrift/Thrift.h:54:19: warning: 'iterator<std::forward_iterator_tag, std::pair<int, const char *>>' is deprecated [-Wdeprecated-declarations]
       : public std::iterator<std::forward_iterator_tag, std::pair<int, const char*> > {
                     ^
   /usr/lib/llvm-16/bin/../include/c++/v1/__iterator/iterator.h:24:29: note: 'iterator<std::forward_iterator_tag, std::pair<int, const char *>>' has been explicitly marked deprecated here
   struct _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX17 iterator
                               ^
   /usr/lib/llvm-16/bin/../include/c++/v1/__config:798:41: note: expanded from macro '_LIBCPP_DEPRECATED_IN_CXX17'
   #    define _LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_DEPRECATED
                                           ^
   /usr/lib/llvm-16/bin/../include/c++/v1/__config:771:49: note: expanded from macro '_LIBCPP_DEPRECATED'
   #      define _LIBCPP_DEPRECATED __attribute__((deprecated))
                                                   ^
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src/thrift/transport/TTransportException.cpp:20:
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src/thrift/transport/TTransportException.h:25:
   /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src/thrift/Thrift.h:54:19: warning: 'iterator<std::forward_iterator_tag, std::pair<int, const char *>>' is deprecated [-Wdeprecated-declarations]
       : public std::iterator<std::forward_iterator_tag, std::pair<int, const char*> > {
                     ^
   /usr/lib/llvm-16/bin/../include/c++/v1/__iterator/iterator.h:24:29: note: 'iterator<std::forward_iterator_tag, std::pair<int, const char *>>' has been explicitly marked deprecated here
   struct _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX17 iterator
                               ^
   /usr/lib/llvm-16/bin/../include/c++/v1/__config:798:41: note: expanded from macro '_LIBCPP_DEPRECATED_IN_CXX17'
   #    define _LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_DEPRECATED
                                           ^
   /usr/lib/llvm-16/bin/../include/c++/v1/__config:771:49: note: expanded from macro '_LIBCPP_DEPRECATED'
   #      define _LIBCPP_DEPRECATED __attribute__((deprecated))
                                                   ^
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src/thrift/transport/TSimpleFileTransport.cpp:22:
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src/thrift/transport/TSimpleFileTransport.h:23:
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src/thrift/transport/TFDTransport.h:28:
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src/thrift/transport/TTransport.h:23:
   /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src/thrift/Thrift.h:54:19: warning: 'iterator<std::forward_iterator_tag, std::pair<int, const char *>>' is deprecated [-Wdeprecated-declarations]
       : public std::iterator<std::forward_iterator_tag, std::pair<int, const char*> > {
                     ^
   /usr/lib/llvm-16/bin/../include/c++/v1/__iterator/iterator.h:24:29: note: 'iterator<std::forward_iterator_tag, std::pair<int, const char *>>' has been explicitly marked deprecated here
   struct _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX17 iterator
                               ^
   /usr/lib/llvm-16/bin/../include/c++/v1/__config:798:41: note: expanded from macro '_LIBCPP_DEPRECATED_IN_CXX17'
   #    define _LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_DEPRECATED
                                           ^
   /usr/lib/llvm-16/bin/../include/c++/v1/__config:771:49: note: expanded from macro '_LIBCPP_DEPRECATED'
   #      define _LIBCPP_DEPRECATED __attribute__((deprecated))
                                                   ^
   1 warning generated.
   1 warning generated.
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src/thrift/transport/THttpTransport.cpp:22:
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src/thrift/transport/THttpTransport.h:23:
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src/thrift/transport/TBufferTransports.h:28:
   In file included from /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src/thrift/transport/TTransport.h:23:
   /tmp/RtmpzZZyw3/file2a59389c27/thrift_ep-prefix/src/thrift_ep/lib/cpp/src/thrift/Thrift.h:54:19: warning: 'iterator<std::forward_iterator_tag, std::pair<int, const char *>>' is deprecated [-Wdeprecated-declarations]
       : public std::iterator<std::forward_iterator_tag, std::pair<int, const char*> > {
                     ^
   /usr/lib/llvm-16/bin/../include/c++/v1/__iterator/iterator.h:24:29: note: 'iterator<std::forward_iterator_tag, std::pair<int, const char *>>' has been explicitly marked deprecated here
   struct _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX17 iterator
                               ^
   /usr/lib/llvm-16/bin/../include/c++/v1/__config:798:41: note: expanded from macro '_LIBCPP_DEPRECATED_IN_CXX17'
   #    define _LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_DEPRECATED
                                           ^
   /usr/lib/llvm-16/bin/../include/c++/v1/__config:771:49: note: expanded from macro '_LIBCPP_DEPRECATED'
   #      define _LIBCPP_DEPRECATED __attribute__((deprecated))
                                                   ^
   1 warning generated.
   1 warning generated.
   make[4]: *** [CMakeFiles/Makefile2:125: lib/cpp/CMakeFiles/thrift.dir/all] Error 2
   make[3]: *** [Makefile:156: all] Error 2
   
   make[2]: Leaving directory '/tmp/RtmpzZZyw3/file2a59389c27'
   **** Error building Arrow C++.  
   
   
   </details>
   
   


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] nealrichardson commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "nealrichardson (via GitHub)" <gi...@apache.org>.
nealrichardson commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1402437533

   A few details I just noticed in the output on https://www.stats.ox.ac.uk/pub/bdr/clang16/arrow.out:
   
   ```
   * using R Under development (unstable) (2023-01-20 r83646)
   * using platform: x86_64-pc-linux-gnu (64-bit)
   * R was compiled by
       clang version 16.0.0 (https://github.com/llvm/llvm-project.git 2133e8b9f942f91ec54e28c580fccf6d6b26c62e)
       GNU Fortran (GCC) 12.2.1 20221121 (Red Hat 12.2.1-4)
   ```
   
   So, (1) we're already using a newer clang build than he is, but (2) we're not testing with R-devel compiled by that clang, for what that's worth.


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] paleolimbot commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "paleolimbot (via GitHub)" <gi...@apache.org>.
paleolimbot commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1416233042

   I was able to get a build error, although I had to build R from source using clang-16 and libc++ ( https://github.com/paleolimbot/docker-images/blob/main/2023-02-03_clang16-r-devel/Dockerfile ). The error isn't the one reported by CRAN, however. The error seems related to the use of `libc++` (which is very specifically used in CRAN's clang/r-devel setup)...that was missing in my previous tests (although is not missing in the crossbow job that we use to test this...although the crossbow job is using clang-15 and not clang-16...).
   
   ```
   #19 767.3 installing to /opt/R-devel/lib/R/library/00LOCK-arrow/00new/arrow/libs
   #19 767.4 ** R
   #19 767.5 ** inst
   #19 767.5 ** byte-compile and prepare package for lazy loading
   #19 901.9 ** help
   #19 903.0 *** installing help indices
   #19 903.7 ** building package indices
   #19 904.7 ** testing if installed package can be loaded from temporary location
   #19 906.0 Error: package or namespace load failed for 'arrow' in dyn.load(file, DLLpath = DLLpath, ...):
   #19 906.0  unable to load shared object '/opt/R-devel/lib/R/library/00LOCK-arrow/00new/arrow/libs/arrow.so':
   #19 906.0   /opt/R-devel/lib/R/library/00LOCK-arrow/00new/arrow/libs/arrow.so: undefined symbol: _ZNK3re23RE219CapturingGroupNamesEv
   ```
   
   I also have a check going that doesn't involve an R source build (faster but maybe less accurate): https://github.com/paleolimbot/docker-images/blob/main/2023-02-03_clang16/Dockerfile
   
   Some further reading:
   
   From https://www.stats.ox.ac.uk/pub/bdr/clang16/README.txt:
   
   ```
   The [-Wenum-constexpr-conversion] errors seen in
   
   RSQLite
   
   are from the old Boost headers.
   
   std:unary_function was deprecated in C+11 and removed in C++17, and finally
   in clang 16 in C++17 mode.  Boost 1.81 was still using it.
   ```
   
   Also see https://www.stats.ox.ac.uk/pub/bdr/Rconfig/r-devel-linux-x86_64-fedora-clang and https://apt.llvm.org/
   
   I will meditate on all this over the weekend...any/all ideas welcome!


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] assignUser closed issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "assignUser (via GitHub)" <gi...@apache.org>.
assignUser closed issue #33819: [R] R package fails to install when using clang-16 as the compiler
URL: https://github.com/apache/arrow/issues/33819


-- 
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: issues-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] paleolimbot commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "paleolimbot (via GitHub)" <gi...@apache.org>.
paleolimbot commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1405597428

   The error shown is:
   
   ```
   checking tests ... [0m/90m] ERROR
     Running ‘testthat.R’
   ```
   
   Which looks to me like something timed out?
   
   I tried a bunch of things around
   
   ```dockerfile
   FROM fedora:36
   
   RUN dnf install -y R git llvm clang
   
   RUN mkdir ~/.R &&  \
     echo 'CXX11=clang++ -std=c++11' > ~/.R/Makevars &&  \
     echo 'CXX14=clang++ -std=c++14' >> ~/.R/Makevars && \
     echo 'CXX17=clang++ -std=c++17' >> ~/.R/Makevars && \
     echo 'CXX20=clang++ -std=c++20' >> ~/.R/Makevars && \
     echo 'CXX=clang++ -std=c++11' >> ~/.R/Makevars && \
     echo 'CC=clang' >> ~/.R/Makevars
   
   RUN R -e 'Sys.setenv(ARROW_R_DEV="true"); install.packages(c("arrow", "testthat", "dplyr", "stringr", "lubridate", "hms"), repos = "https://cloud.r-project.org/")'
   
   RUN git clone https://github.com/apache/arrow.git /arrow && cd /arrow && git checkout tags/apache-arrow-10.0.1
   
   RUN cd /arrow/r/tests && R -e 'Sys.setenv(ARROW_R_DEV="true"); source("testthat.R")'
   ```
   
   ...but haven't been able to make anything hang yet. That's not quite right...it's clang-14 and the first time I did it I was missing some packages. Fedora 37 was released recently too and he may have updated without updating the "check environments" page.


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] nealrichardson commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "nealrichardson (via GitHub)" <gi...@apache.org>.
nealrichardson commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1402465879

   Ok, sounds good. Might be a good idea to upgrade our bundled boost anyway, just to avoid a potential I Told You So.


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] nealrichardson commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "nealrichardson (via GitHub)" <gi...@apache.org>.
nealrichardson commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1401050095

   Also, if you `apt-get install clang` in the image, will it pull the latest nightly clang? 


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] paleolimbot commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "paleolimbot (via GitHub)" <gi...@apache.org>.
paleolimbot commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1399394284

   @nealrichardson I can't reproduce using Dockerfile:
   
   ```dockerfile
   FROM silkeh/clang:dev-bullseye
   
   RUN apt-get update && apt-get install -y git cmake libxml2-dev libcurl4-openssl-dev libssl-dev
   RUN git clone https://github.com/apache/arrow.git /arrow
   RUN mkdir /arrow-build && cd /arrow-build && cmake /arrow/cpp -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++  -DARROW_CSV=ON -DARROW_DATASET=ON -DARROW_FILESYSTEM=ON -DARROW_COMPUTE=ON -DARROW_PARQUET=ON -DBoost_SOURCE=BUNDLED && cmake --build . && cmake --install . --prefix /arrow-dist
   
   ENV ARROW_HOME /arrow-dist
   
   CMD /bin/bash
   ```
   
   So I'm guessing it's either S3 or GCS.


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] nealrichardson commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "nealrichardson (via GitHub)" <gi...@apache.org>.
nealrichardson commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1402487442

   https://github.com/apache/arrow/issues/33851 for boost


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] paleolimbot commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "paleolimbot (via GitHub)" <gi...@apache.org>.
paleolimbot commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1400722729

   No errors with the R package (10.0.1) either:
   
   ```dockerfile
   FROM silkeh/clang:dev-bullseye
   
   RUN apt-get update && apt-get install -y git r-base cmake libcurl4-openssl-dev libssl-dev
   
   RUN R -e "install.packages(c('lifecycle', 'purrr', 'rlang', 'tidyselect', 'vctrs', 'dplyr'))"
   
   RUN mkdir ~/.R &&  \
     echo 'CXX11=clang++ -std=c++11' > ~/.R/Makevars &&  \
     echo 'CXX14=clang++ -std=c++14' >> ~/.R/Makevars && \
     echo 'CXX17=clang++ -std=c++17' >> ~/.R/Makevars && \
     echo 'CXX20=clang++ -std=c++20' >> ~/.R/Makevars && \
     echo 'CXX=clang++ -std=c++11' >> ~/.R/Makevars && \
     echo 'CC=clang' >> ~/.R/Makevars
   
   ENV ARROW_R_DEV true
   RUN R -e 'install.packages("arrow"); library(arrow)'
   
   CMD /bin/bash
   ```


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] nealrichardson commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "nealrichardson (via GitHub)" <gi...@apache.org>.
nealrichardson commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1400843981

   Right I saw that, but I don't know what version was there 24 days ago when the image was built, and that might be useful information if his clang version is different.


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] nealrichardson commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "nealrichardson (via GitHub)" <gi...@apache.org>.
nealrichardson commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1419780116

   Here's another (probably bad) idea: I wonder if we could patch the thrift cmakelists so that we just don't build the TJSONProtocol, which I bet that Parquet doesn't need: https://github.com/apache/thrift/blob/master/lib/cpp/CMakeLists.txt#L43
   
   https://github.com/apache/thrift/blob/master/lib/cpp/src/thrift/protocol/TJSONProtocol.cpp#L22 is what uses Boost.Locale, which pulls in this hash.hpp. 
   
   Is that crazy, @kou?


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] assignUser commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "assignUser (via GitHub)" <gi...@apache.org>.
assignUser commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1439298657

   The fix was merged right? And the cran checks look fine so I am closing this :)


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] paleolimbot commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "paleolimbot (via GitHub)" <gi...@apache.org>.
paleolimbot commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1419727833

   There is a line in https://www.stats.ox.ac.uk/pub/bdr/clang16/README.txt that says:
   
   ```
   std:unary_function was deprecated in C+11 and removed in C++17, and finally
   in clang 16 in C++17 mode.  Boost 1.81 was still using it.
   ```
   
   ...so we may be out of luck until a Boost version exists that does not use it?


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] paleolimbot commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "paleolimbot (via GitHub)" <gi...@apache.org>.
paleolimbot commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1400885283

   Good call...here's what I get:
   
   ```
   % docker run --rm -it --platform linux/amd64 silkeh/clang:dev-bullseye
   root@282cc557891a:/# clang --version
   Debian clang version 16.0.0 (++20221230071836+eda2eaabf294-1~exp1~20221230071942.515)
   Target: x86_64-pc-linux-gnu
   Thread model: posix
   InstalledDir: /usr/bin
   ```
   
   Probably best if I verify one more time tonight when I'm back at home (the computer that ran the check is in my basement).


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] paleolimbot commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "paleolimbot (via GitHub)" <gi...@apache.org>.
paleolimbot commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1405422792

   As now shown on the package check page, the clang build on Fedora now appears broken, too. We have a CI nightly that attempts to replicate the fedora clang build and that is still passing the last I checked. The clang-16 build is also on Fedora, so there's a very good chance the problem is fedora and not dev clang. I will investigate the Fedora issue tomorrow (maybe the version of Fedora got bumped?).


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] nealrichardson commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "nealrichardson (via GitHub)" <gi...@apache.org>.
nealrichardson commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1416461332

   Maybe start with the rhub fedora-clang-devel job and then pull the latest clang into that?


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] paleolimbot commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "paleolimbot (via GitHub)" <gi...@apache.org>.
paleolimbot commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1399745347

   That also works; however, when I check out the 10.0.1 release and try to build that, I don't get any errors either. (Again, will try the R package install from source specifically on Monday).


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] thisisnic commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "thisisnic (via GitHub)" <gi...@apache.org>.
thisisnic commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1416045037

   We submitted this to CRAN, hoping the error we couldn't replicate might have disappeared, but apparently not:
   
   >**** Error building Arrow C++. Re-run with ARROW_R_DEV=true for debug
   information.
   ------------------------- NOTE ---------------------------
   There was an issue preparing the Arrow C++ libraries.
   See https://arrow.apache.org/docs/r/articles/install.html
   ---------------------------------------------------------
   
   They tried again with `ARROW_R_DEV` set to `true` but didn't apparently get anything useful but did get lots of errors like these:
   
   > ESC[0mESC[1m/usr/local/clang-trunk/bin/../include/c++/v1/__iterator/iterator.h:24:29:
   ESC[0mESC[0;1;30mnote: ESC[0m'iterator<std::forward_iterator_tag,
   std::pair<int, const char *>>' has been explicitly marked deprecated
   hereESC[0m
   struct _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX17 iterator
   ...
   1 warning and 1 error generated.
   
   Is this familiar to anyone?
   


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] paleolimbot commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "paleolimbot (via GitHub)" <gi...@apache.org>.
paleolimbot commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1419732482

   Although, if we merge https://github.com/apache/arrow/pull/33890 it's slightly easier to check.


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] thisisnic commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "thisisnic (via GitHub)" <gi...@apache.org>.
thisisnic commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1421294003

   > I think it's worth picking that commit into https://github.com/apache/arrow/pull/33952 and re-running crossbow submit --group r.
   
   See https://github.com/apache/arrow/pull/34072


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] nealrichardson commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "nealrichardson (via GitHub)" <gi...@apache.org>.
nealrichardson commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1419621088

   Sounds like the boost upgrade is it then. Upgrading thrift won't change anything because they still include boost in that location: https://github.com/apache/thrift/blob/master/lib/cpp/src/thrift/protocol/TJSONProtocol.cpp#L22
   
   @kou has been submitting some PRs over there to help them remove their boost dependencies but this one hasn't been handled yet.


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] nealrichardson commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "nealrichardson (via GitHub)" <gi...@apache.org>.
nealrichardson commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1419757422

   This particular boost header (the only one we include that used `std::unary_function`) does not use it in 1.81, AFAICT: https://github.com/boostorg/container_hash/blob/boost-1.81.0/include/boost/container_hash/hash.hpp
   
   So boost upgrade should be enough for us.


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] kou commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "kou (via GitHub)" <gi...@apache.org>.
kou commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1420374872

   I've merged #33890. Now we don't have any problem, right?
   
   


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] nealrichardson commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "nealrichardson (via GitHub)" <gi...@apache.org>.
nealrichardson commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1419790399

   In fact, if I read it correctly, if we did that, we wouldn't need boost at all for Thrift except on Windows? Of the headers listed as needed for thrift on https://github.com/apache/arrow/blob/master/cpp/build-support/trim-boost.sh#L52-L53, locale is only used there, scoped_exit is only used in code that is conditionally built on windows, and I can't find mention of the third header anymore.


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] nealrichardson commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "nealrichardson (via GitHub)" <gi...@apache.org>.
nealrichardson commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1399598258

   Does that image have boost on it? Have you tried with dependency source BUNDLED?


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] paleolimbot commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "paleolimbot (via GitHub)" <gi...@apache.org>.
paleolimbot commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1400804405

   It looks like the image uses https://apt.llvm.org/ , which has a development branch set of packages for Debian. I'm guessing BDR is on Fedora...it would be nice to know how exactly he installed it since it appears that does matter. The image I'm using was built 24 days ago ( https://hub.docker.com/layers/silkeh/clang/dev-bullseye/images/sha256-227546652b0b6d95f8acd5377ec53b32d9f417091f6fbe2190633e0cd30a837a?context=explore ).


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] nealrichardson commented on issue #33819: [R] R package fails to install when using clang-16 as the compiler

Posted by "nealrichardson (via GitHub)" <gi...@apache.org>.
nealrichardson commented on issue #33819:
URL: https://github.com/apache/arrow/issues/33819#issuecomment-1400746290

   Ok, I can email BDR and ask for more details about his setup. Can you find the clang version/commit from which it was built? 


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org