search for: rlibdir

Displaying 2 results from an estimated 2 matches for "rlibdir".

Did you mean: libdir
2005 Sep 08
1
Install packages to non-default lib on Windows
...s to install packages to their own package library for the purposes of binary package building. It seems, however, that write access to $R_HOME is required as part of the install step even when -l is used to specify an alternate package library. here's an example of what we're seeing: C:\rlibdir\hpages>set R_LIBS=c:\rlibdir\hpages C:\rlibdir\hpages>d:\biocbld\R-devel\bin\R CMD INSTALL -l=%R_LIBS% --build Biobase_1.6.7.tar.gz Using auto-selected zip options 'Biobase-ZIPDATA=zip Biobase-HELP=ziponly' ---------- Making package Biobase ------------ adding build stamp to DESC...
2010 Feb 11
2
LinkingTo and C++
Hello, I've been trying to make LinkingTo work when the package linked to has c++ code. I've put dumb packages to illustrate this emails here ; http://addictedtor.free.fr/misc/linkingto Package A defines this C++ class: class A { public: A() ; ~A() ; SEXP hello() ; } ; Package B has this function : SEXP say_hello(){ A a ; return a.hello() ; } headers of package A are copied