Skip to content
Prev 6079 / 10988 Next

[Rcpp-devel] Compilation without libR.so ?

Martin,
On 14 June 2013 at 12:32, Romain Francois wrote:
| Le 14 juin 2013 ? 10:40, Martin Jakt <mjakt at z2.keio.jp> a ?crit :
| > 1. It's slow
| 
| Perhaps look into devtools which might help you with the process. 

It's all already there. Just read the output of 

     R CMD check --help

carefully. You can turn a lot of (at the time of C++ code writing) auxiliary
tests (docs, running examples, ...) off.   

I also use 

    CC=ccache gcc-4.7
    CXX=ccache g++-4.7

which caches compilation.   With that, builds are fast, and you still benefit
from the R infrastructure around you.

Glad you are finding the doxygen documentation useful. I too use it for
browsing the class structure.  

Dirk