tdhock opened a new pull request, #35555: URL: https://github.com/apache/arrow/pull/35555
Current docs say that cmake >=3.5 is required to build C++ libraries, but that is not consistent with what I observe, build commands fail (do not report output similar to docs) using cmake 3.10.2 on my system, see below. Not sure what the minimal cmake version would be, but I installed cmake 3.22.1 from conda and that seems to work (gives output similar to docs). ``` (arrow) tdhock@maude-MacBookPro:~/arrow-git/cpp/build(main)$ /usr/bin/cmake --version cmake version 3.10.2 CMake suite maintained and supported by Kitware (kitware.com/cmake). (arrow) tdhock@maude-MacBookPro:~/arrow-git/cpp/build(main)$ cd .. (arrow) tdhock@maude-MacBookPro:~/arrow-git/cpp(main)$ /usr/bin/cmake --list-presets CMake Error: The source directory "/home/tdhock/arrow-git/cpp/--list-presets" does not exist. Specify --help for usage, or press the help button on the CMake GUI. (arrow) tdhock@maude-MacBookPro:~/arrow-git/cpp(main)$ /usr/bin/cmake --preset -N ninja-debug-minimal (arrow) tdhock@maude-MacBookPro:~/arrow-git/cpp(main)$ cd build (arrow) tdhock@maude-MacBookPro:~/arrow-git/cpp/build(main)$ /usr/bin/cmake .. --preset ninja-debug-minimal CMake Error: The source directory "/home/tdhock/arrow-git/cpp/build/ninja-debug-minimal" does not exist. Specify --help for usage, or press the help button on the CMake GUI. ``` -- 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-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org