Re: [R] problem with loading the dynamic object(.so file) inside a R package

2012-06-22 Thread R. Michael Weylandt
I believe that useDynLib() in the NAMESPACE file should do it for you. Best, Michael On Fri, Jun 22, 2012 at 1:36 PM, xuan zhao wrote: > I have built a R package including the C code. My question is: > Can the shared object get loaded automatically as we load the R package? > In my case, I have

[R] problem with loading the dynamic object(.so file) inside a R package

2012-06-22 Thread xuan zhao
I have built a R package including the C code. My question is: Can the shared object get loaded automatically as we load the R package? In my case, I have to do dyn.load("dirc/filename.so") in the R script to load the shared object, which is very inconvenient. Is there anyway to make R to load this