Is it possible to reload an R package with native extensions in an R session?
I am developing Rliblinear, which uses several C functions.
If I make a change to R code in the package, I can just reinstall and reload;
$ R CMD build Rliblinear
$ R CMD INSTALL Rliblinear
and then in an R shell;
> detach("package:Rliblinear", unload=TRUE)
> library(Rliblinear)
However, the C functions are not affected unless I restart the R interpreter.
Is there a way I can force the interpreter to reload the shared object, Rliblinear.so?