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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]