amoeba commented on issue #45642:
URL: https://github.com/apache/arrow/issues/45642#issuecomment-2690844750

   Hi @lukedg97, I think your best bet is to try to build a wheel without S3 
like you're trying to do here. Can you share the output you get from your 
script above? I think the only issue I see is that the first cmake command 
needs to be changed to actually pass the options you want. Can you try this 
instead?
   
   ```
   cmake \
       -S arrow/cpp \
       -B arrow/cpp/build \
       -DCMAKE_BUILD_TYPE=Release \
       -GNinja \
       -DARROW_FLIGHT=ON \
       -DARROW_PARQUET=ON \
       -DARROW_MIMALLOC=OFF \
       -DPARQUET_REQUIRE_ENCRYPTION=OFF
   ```
   
   I disable mimalloc in the above command since [I'm not sure mimalloc works 
on iOS](https://github.com/microsoft/mimalloc/issues/263).


-- 
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]

Reply via email to