tadeja commented on PR #50924: URL: https://github.com/apache/arrow/pull/50924#issuecomment-5367784808
> These warnings may be related: > > https://github.com/apache/arrow/actions/runs/32355841269/job/96385713260#step:6:6310 > > ``` > /opt/conda/envs/arrow/bin/x86_64-conda-linux-gnu-ld: warning: libbrotlidec.so.1, needed by src/arrow/libarrow.so, not found (try using -rpath or -rpath-link) > /opt/conda/envs/arrow/bin/x86_64-conda-linux-gnu-ld: warning: libbrotlienc.so.1, needed by src/arrow/libarrow.so, not found (try using -rpath or -rpath-link) > /opt/conda/envs/arrow/bin/x86_64-conda-linux-gnu-ld: warning: liblz4.so.1, needed by src/arrow/libarrow.so, not found (try using -rpath or -rpath-link) > ``` Oh, yes, the problems here are related! There's a fix upstream already: https://github.com/apache/arrow/pull/50903#issuecomment-5357963725 I see Meson job still shows wrong gcc variant https://github.com/apache/arrow/actions/runs/32365959602/job/96416050221?pr=50924#step:6:267 `gcc 15.3.0 hb7a6aa6_1 conda-forge` so no dependency/no install of [conda-cpp-specs](https://anaconda.org/channels/conda-forge/packages/conda-gcc-specs/overview) which causes warnings about libraries under $CONDA_PREFIX/lib and also causes the missing `bzip2`. https://github.com/apache/arrow/actions/runs/32365959602/job/96416050221?pr=50924#step:6:175 ``` #12 [ 5/11] RUN mamba install -q -y --file arrow/ci/conda_env_cpp.txt --file arrow/ci/conda_env_gandiva.txt compilers ... #12 CACHED ``` As I understand now, Docker layer cache has to be invalidated for conda-forge to resolve to the correct gcc variant already present in repodata (`gcc 15.3.0 hc6a0c74_2` which would install conda-gcc-specs ), and probably best to merge #50903 anyway. -- 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]
