Skip to content
Prev 38160 / 63424 Next

Sections 5.8.1 and 5.8.2 of Writing R Extensions (LinkingTo)

On Oct 27, 2010, at 1:22 PM, Dominick Samperi wrote:

            
Not that I'm aware of - it's just a check that that package can be used. If you omit it you will get an empty string and no error on failure.
Not really since that sub-process will die when finished so it won't have any effect on any search path.


BTW: system.file("libs",...)  doesn't do the job these days since it will be missing R_ARCH so you need something like
system.file("libs",.Platform$r_arch, package=...)
for any more recent R.

Cheers,
Simon