Compiling the R package in parallel on multiple platforms

I am developing a new R package using Rcpp. We have reached a point where compilation time has increased significantly.

So I was wondering how to compile the R package in parallel. We are developing Linux, OSX and Windows for maximum compatibility, and so far I could only answer my question for Linux (package sudo MAKE = "make -j8" R CMD INSTALL).

Can someone tell me how to do the same on Windows and OSX?

thanks Cedric

+4
source share

All Articles