Displaying 1 result from an estimated 1 matches for "gslr".
Did you mean:
aslr
2013 Mar 11
1
compiling C code using headers from another R package
I am developing an R package, eiR, which depends on another C library,
GNU scientific library (GSL). In order to make life easier for the user,
it would be nice to not have this as an external dependency, thus I
would like to wrap this library in another R package, say GSLR for
example. Thus far I know how to do this. The C code in eiR requires the
.so library and the header files from GSL in order to compile. So the
idea is that eiR would depend on GSLR, then GSLR gets compiled and
installed first, then, while eiR is installing, it should be able to
make use of...