Re: [R-pkg-devel] Use LAPACK, BLAS and CBLAS paths in configure file

2019-11-05 Thread Sameh M. Abdulah
My package requires LAPACK, LAPACKE, BLAS, and CBLAS, this why I think OpenBLAS should be available to support all these libraries. --Sameh On 11/5/19, 1:09 PM, "Ralf Stubner" wrote: On Tue, Nov 5, 2019 at 10:12 AM Sameh M. Abdulah wrote: > 1- Use LAPACK, BLAS, and CBLAS paths

Re: [R-pkg-devel] Use LAPACK, BLAS and CBLAS paths in configure file

2019-11-05 Thread Ralf Stubner
On Tue, Nov 5, 2019 at 10:12 AM Sameh M. Abdulah wrote: > 1- Use LAPACK, BLAS, and CBLAS paths in my configure file. What is the > command to use or what are the environment variables to read? According to WRE [1] you should include "$(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS)" in PKG_LIBS via

[R-pkg-devel] Use LAPACK, BLAS and CBLAS paths in configure file

2019-11-05 Thread Sameh M. Abdulah
Hi, I would like to 1- Use LAPACK, BLAS, and CBLAS paths in my configure file. What is the command to use or what are the environment variables to read? 2- Check if OpenBLAS is installed on the system or not. I tried to use pkg-config but it doesn't work with CRAN servers, any alternatives?