>
> | > And you can tell R CMD INSTALL to skip steps like vignettes, tests,
> cleanup,
> | > ... to just load the R and C++ code.
> |
> | Do you have a standard set of flags you use: --no-docs --no-html
> | --no-multiarch? I'll probably make a quick_install function for
> | devtools. (Or maybe I
On 26 March 2012 at 14:03, Hadley Wickham wrote:
| > Plus I call 'g++' et al as 'ccache g++' so it's all cached in case of no
| > changes, thanks to the amazing compiler caching package ccache (which is
| > pretty standard on Linux).
|
| Never heard of that before - thanks!
Just googled, seems l
> Plus I call 'g++' et al as 'ccache g++' so it's all cached in case of no
> changes, thanks to the amazing compiler caching package ccache (which is
> pretty standard on Linux).
Never heard of that before - thanks!
> And you can tell R CMD INSTALL to skip steps like vignettes, tests, cleanup,
>
On 21 March 2012 at 08:49, Hadley Wickham wrote:
| > Sure, very valid question. I tend to do two things:
| >
| > a) at times experiment/try/play with the inline package and cxxfunction
| >
| > b) much more often, work with a package where, for force of habit, my
| > typical workflow often is
> Sure, very valid question. I tend to do two things:
>
> a) at times experiment/try/play with the inline package and cxxfunction
>
> b) much more often, work with a package where, for force of habit, my
> typical workflow often is
>
> $ R CMD INSTALL mypkg && r -lmypkg -e 'someFunctio
On 20 March 2012 at 12:22, Hadley Wickham wrote:
| > For usage beyond what we document and test, you're on your own. If you want
| > to explore usage with devtools and other means, go for it.
| >
| > But I will be unlikely to have time to work this out for you, unfortunately.
|
| Let me flip thi
> For usage beyond what we document and test, you're on your own. If you want
> to explore usage with devtools and other means, go for it.
>
> But I will be unlikely to have time to work this out for you, unfortunately.
Let me flip this around on you - when you're developing a package that
uses R
Hi Chris,
On 20 March 2012 at 00:10, Chris DuBois wrote:
| Hi all,
|
| I'm trying out Hadley's devtools package. I'm having trouble using
| load_all() on a package which uses Rcpp modules. From the readme,
| this function "simulates installing and reloading your package, by
| loading R code in