Re: [R-pkg-devel] Creating and hosting static libraries for package installation on Windows

2024-12-13 Thread Satyaprakash Nayak
For some reason, I am not getting emails from the list, but would like to thank Uwe and Tomas for their help. The code Tomas has provided in his response has resolved the issue. Satya On Tue, Dec 10, 2024 at 11:23 PM Satyaprakash Nayak wrote: > Hi r-package-devel > > I am working on

[R-pkg-devel] Creating and hosting static libraries for package installation on Windows

2024-12-10 Thread Satyaprakash Nayak
Hi r-package-devel I am working on updating my package `sundialr` ( https://cran.r-project.org/web/packages/sundialr/index.html), wherein I was earlier bundling the C source files with the package, but now I am using `cmake` to create static libraries for the upstream C library SUNDIALS which the

Re: [R-pkg-devel] Warnings from upstream C library in CRAN submission

2024-02-04 Thread Satyaprakash Nayak
Thank you Jeff and Simon for your feedback. I have filed your feedback as an issue to the SUNDIALS developers at - https://github.com/LLNL/sundials/issues/409 Thank you. On Sat, Feb 3, 2024 at 10:38 AM Satyaprakash Nayak wrote: > Hi > > I had a package 'sundialr' which was

[R-pkg-devel] Warnings from upstream C library in CRAN submission

2024-02-03 Thread Satyaprakash Nayak
Hi I had a package 'sundialr' which was archived from CRAN. It is an interface to some of the solvers in SUNDIALS ODE Solving library. I have fixed the issue which was related to emails being forwarded from the maintainer's email address. The repository code can be found at - https://github.com/s

Re: [R-pkg-devel] package fails with parallel make - would forcing a serial version work?

2019-01-14 Thread Satyaprakash Nayak
efore it is needed. Your luck does not hold in >> parallel. The better fix is to correct your Makefile. >> >> Paul >> >> On 1/10/19 4:54 PM, Satyaprakash Nayak wrote: >> > Dear R package developers >> > >> > I published a package on CRA

[R-pkg-devel] package fails with parallel make - would forcing a serial version work?

2019-01-10 Thread Satyaprakash Nayak
Dear R package developers I published a package on CRAN last year (sundialr) which is now failing with as it is not make to compile a static library with parallel make. In this package, I compile a static library (libsundials_all.a) from source files of a third party. The specifics of compiling t

Re: [R-pkg-devel] Help with reproducing (and solving) clang-UBSAN and Solaris installation errors

2018-07-10 Thread Satyaprakash Nayak
Thank you very much Kevin for your response. I got R development with clang-6.0 working on a Ubuntu machine yesterday so will investigate this further to see if there is anything more subtle going on w.r.t. UBSAN issue and report here. Regarding Solaris, I have code such as SOURCES = $(cvode.cpp

Re: [R-pkg-devel] Can't build package but can load it with devtools::load_all()

2016-07-31 Thread Satyaprakash Nayak
.so, 6): Symbol not found: > __ZN7libsbml10SBMLReader16readSBMLFromFileERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIc is the path to package directory Thank you Satyaprakash Nayak On Sun, Jul 31, 2016 at 11:32 PM, Satyaprakash Nayak wrote: > Hi > > I am trying to b

[R-pkg-devel] Can't build package but can load it with devtools::load_all()

2016-07-31 Thread Satyaprakash Nayak
the error shown, I think libsbml.5.dylib is not being loaded, however, it is there in the /usr/local/lib folder. The code for this package can be found at https://github.com/sn248/Rcppsbml Any help in resolving this error would be highly appreciated! Thank you Satyaprakash Nayak [

Re: [R-pkg-devel] Linking to C library from within R package - library not loaded error

2016-07-06 Thread Satyaprakash Nayak
6, 2016 at 12:22 PM, Satyaprakash Nayak wrote: > Hi > > I am trying to develop a package which links against a C library which is > installed on my system (Mac OSX) in the /usr/local/lib directory. > > The C library against which I am linking is called 'Sundials > &l

[R-pkg-devel] Linking to C library from within R package - library not loaded error

2016-07-06 Thread Satyaprakash Nayak
Hi I am trying to develop a package which links against a C library which is installed on my system (Mac OSX) in the /usr/local/lib directory. The C library against which I am linking is called 'Sundials