icejean commented on issue #36848:
URL: https://github.com/apache/arrow/issues/36848#issuecomment-1652843996
It's on my previous post allready, same output.
```
> Sys.setenv(ARROW_USE_PKG_CONFIG=TRUE)
> Sys.setenv("LIBARROW_BINARY" = TRUE)
> Sys.setenv("LIBARROW_MINIMAL" = FALSE)
> Sys.setenv("ARROW_R_DEV" = TRUE)
> Sys.setenv(ARROW_WITH_SNAPPY ="ON")
> Sys.setenv(ARROW_PARQUET ="ON")
> Sys.setenv(ARROW_DATASET ="ON")
> install.packages("/root/R/arrow_12.0.1.tar.gz", repo=NULL, type="source")
* installing *source* package ‘arrow’ ...
** package ‘arrow’ successfully unpacked and MD5 sums checked
** using staged installation
*** Arrow C++ libraries found via pkg-config at
PKG_CFLAGS=-D_GLIBCXX_USE_CXX11_ABI=0
PKG_LIBS= -larrow
** libs
```
PKG_LIBS, I can see that the PKG_LIBS env in compiling logs is
*** Arrow C++ libraries found via pkg-config at
PKG_CFLAGS=-D_GLIBCXX_USE_CXX11_ABI=0
PKG_LIBS= -larrow
BUT NOT
PKG_LIBS=-L/usr/lib64 -larrow_acero -larrow_dataset -lparquet -larrow
Is it means that the compiler couldn't find -larrow_acero -larrow_dataset
-lparquet?
And the package path reported is NULL, is it correct?
--
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]