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

   ### Describe the bug, including details regarding any error messages, 
version, and platform.
   
   I ran into this issue building Arrow with benchmarks enabled on Docker. Here 
is a Dockerfile reproducing the error:
   
   ```
   FROM ubuntu
   
   RUN apt update
   RUN DEBIAN_FRONTEND=noninteractive apt install -y tzdata
   RUN apt install -y build-essential cmake git ninja-build
   RUN apt install -y libbenchmark-dev libboost-all-dev libgflags-dev 
libxsimd-dev rapidjson-dev
   
   WORKDIR /root
   
   ARG ARROW_HASH=8b56d7e9e0f82bf87b82aa5204cd5ff1312768fc # Main at time of 
issue.
   RUN git clone https://github.com/apache/arrow.git \
       && cd arrow/cpp \
       && git checkout $ARROW_HASH \
       && cmake . -G Ninja -B build -DCMAKE_BUILD_TYPE=Release 
-DARROW_BUILD_BENCHMARKS=ON \
       && cmake --build build
   ```
   
   ### Component(s)
   
   Benchmarking


-- 
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-unsubscr...@arrow.apache.org.apache.org

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

Reply via email to