You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "paleolimbot (via GitHub)" <gi...@apache.org> on 2023/02/28 03:15:03 UTC

[GitHub] [arrow-nanoarrow] paleolimbot commented on pull request #128: fix: Ensure tests pass on big endian

paleolimbot commented on PR #128:
URL: https://github.com/apache/arrow-nanoarrow/pull/128#issuecomment-1447509535

   Verified with:
   
   ```bash
   # DOCKER_DEFAULT_PLATFORM=linux/s390x docker run --rm -it -v $(pwd):/arrow-nanoarrow alpine:latest
   
   # Packages
   apk add bash linux-headers git cmake R R-dev g++ gnupg curl
   
   # Build Arrow C++ from source
   curl https://dlcdn.apache.org/arrow/arrow-11.0.0/apache-arrow-11.0.0.tar.gz | \
     tar -zxf -
   mkdir arrow-build && cd arrow-build
   cmake ../apache-arrow-11.0.0/cpp \
       -DARROW_JEMALLOC=OFF -DARROW_SIMD_LEVEL=NONE -DCMAKE_INSTALL_PREFIX=../arrow
   cmake --build .
   cmake --install . --prefix=../arrow
   cd ..
   
   # Build + test
   mkdir build && cd build
   cmake .. -DNANOARROW_BUILD_TESTS=ON
   cmake --build .
   ctest .
   ```


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