Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
Description
I use to configure ARROW C++ using lowercase flag names "on" instead of "ON", that works fine with the C++ library and Python library, but leads to build errors on R.
That's because the R build process looks for compile flags in ArrowOptions.cmake and those compile flags are compared with the uppercase ones.
So in my ArrowOptions.cmake I had
### Build the Parquet libraries
set(ARROW_PARQUET "on")
while the R build script was looking for
grep 'set(ARROW_PARQUET "ON")' $ARROW_OPTS_CMAKE
this can be addressed by making those greps case insensitive
Attachments
Issue Links
- links to